<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Player extends Model
|
|
{
|
|
protected $fillable = [
|
|
'name', 'twitter', 'photo', 'twitter_user_id'
|
|
];
|
|
|
|
public function team() {
|
|
return $this->belongsTo('\App\Team');
|
|
}
|
|
}
|