| Total Complexity | 1 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | class GuestOptions extends Pivot |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * The table associated with the model. |
||
| 11 | * |
||
| 12 | * @var string |
||
| 13 | */ |
||
| 14 | protected $table = 'guest_options'; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * The attributes that are mass assignable. |
||
| 18 | * |
||
| 19 | * @var array |
||
| 20 | */ |
||
| 21 | protected $fillable = [ |
||
| 22 | 'access', |
||
| 23 | ]; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Get the attributes that should be cast. |
||
| 27 | * |
||
| 28 | * @return array<string, string> |
||
| 29 | */ |
||
| 30 | protected function casts(): array |
||
| 37 |