'datetime', 'billed' => 'boolean', 'hours' => 'float' ]; public function timesheet(): BelongsTo { return $this->belongsTo(Timesheet::class); } public function user(): BelongsTo { return $this->belongsTo(User::class); } }