16 lines
249 B
PHP
16 lines
249 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Season extends Model
|
|
{
|
|
protected $fillable = ['title_ru', 'title_en'];
|
|
|
|
public function players()
|
|
{
|
|
return $this->belongsToMany(Player::class);
|
|
}
|
|
}
|