*/ use HasFactory; /** * The attributes that are mass assignable. * * @var list */ protected $fillable = [ 'user_id', 'company_id', 'start', 'end', 'year_of_study', 'semester', 'position_description', 'agreement', 'report', 'report_confirmed', ]; /** * Get the attributes that should be cast. * * @return array */ protected function casts(): array { return [ 'report_confirmed' => 'boolean', ]; } }