| 12345678910 |
- <?php
- namespace App\Models;
- class SportStatistics extends BaseModel
- {
- protected $table = 'sport_statistics';
- 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'];
- }
|