| 1234567891011121314151617181920212223242526272829 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- class League extends BaseModel
- {
- protected $table = 'leagues';
- protected $fillable = ['league_id', 'name', 'type', 'logo', 'country_name', 'country_code', 'country_flag', 'seasons', 'is_active', 'last_synced_at'];
- protected $casts = [
- 'seasons' => 'array',
- ];
- const IS_ACTIVE_YES = 1;
- const IS_ACTIVE_NOT = 0;
- // 五大联赛
- public static $TOP_FIVE_LEAGUE_IDS = [
- 39 => 'Premier League', // 英超
- 71 => 'Serie A', // 意甲
- 140 => 'La Liga', // 西甲
- 78 => 'Bundesliga', // 德甲
- 61 => 'Ligue 1', // 法甲
- ];
- }
|