<?php namespace App\Models; class SportTeam extends BaseModel { protected $table = 'sport_team'; protected $fillable = ['team_id', 'team_name_en', 'team_name', 'logo', 'status']; }