*/ use HasFactory; protected $fillable = [ 'title', 'description', 'internal_note', 'end', ]; protected $casts = [ 'end' => 'datetime', ]; public function applications(): HasMany { return $this->hasMany(Application::class); } }