예제 #1
0
파일: User.php 프로젝트: faycal1/Ball
 public function players()
 {
     $collection = collect([]);
     foreach (Auth::user()->teams as $key => $value) {
         foreach ($value->players as $player) {
             $collection->push(Player::find($player->id));
         }
     }
     return $collection;
 }