0👍
✅
move Matchable
Trait to your User
Model not your MatchesController
controller
<?php
namespace App;
use Illuminate\Foundation\Auth\User as Authenticatable;
use App\Matches\Matchable;
class User extends Authenticatable
{
use Matchable;
Source:stackexchange.com