VehicleOfficeSchedule extends Model
Table of Contents
- $fillable : array<string|int, mixed>
- The attributes that are mass assignable.
- $guarded : array<string|int, mixed>
- The attributes that are not mass assignable.
- $hidden : array<string|int, mixed>
- The attributes that should be hidden for arrays.
- $table : string
- The table associated with the model.
- $with : array<string|int, mixed>
- The extra attributes that should be showed for arrays.
- office() : mixed
- Get the agency of the item.
Properties
$fillable
The attributes that are mass assignable.
protected
array<string|int, mixed>
$fillable
= ['vehicle_office_id', 'weekday', 'start', 'end']
$guarded
The attributes that are not mass assignable.
protected
array<string|int, mixed>
$guarded
= ["id", "created_at", "updated_at"]
$hidden
The attributes that should be hidden for arrays.
protected
array<string|int, mixed>
$hidden
= ['vehicle_office_id', 'created_at', 'updated_at']
$table
The table associated with the model.
protected
string
$table
= "vehicle_office_schedules"
$with
The extra attributes that should be showed for arrays.
protected
array<string|int, mixed>
$with
= []
Methods
office()
Get the agency of the item.
public
office() : mixed