Files
2026-06-10 12:30:07 +02:00

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);
}
}