SportGame.php 409 B

123456789101112131415
  1. <?php
  2. namespace App\Models;
  3. use App\Models\SportGameplay;
  4. class SportGame extends BaseModel
  5. {
  6. protected $table = 'sport_game';
  7. protected $fillable = [ 'name', 'name_en', 'end_time','is_locked'];
  8. public function children()
  9. {
  10. return $this->hasMany(SportGameplay::class, 'game_id', 'id')->select(['id','game_id','name','name_en','is_locked', 'odds','mininum', 'maxinum']);
  11. }
  12. }