SportStatistics.php 440 B

12345678910
  1. <?php
  2. namespace App\Models;
  3. class SportStatistics extends BaseModel
  4. {
  5. protected $table = 'sport_statistics';
  6. protected $fillable = ['data_id', 'team_id', 'half', 'shots_on_goal', 'shots_off_goal', 'shots_insidebox', 'shots_outsidebox', 'total_shots', 'blocked_shots', 'fouls', 'corner_kicks', 'offsides', 'ball_possession', 'yellow_cards', 'red_cards', 'goalkeeper_saves', 'total_passes', 'passes_accurate', 'passes_percent'];
  7. }