Skip to content

Commit

Permalink
Fix property name
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffreyDavidson committed Dec 25, 2023
1 parent 080e39d commit 7a0fbaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/managers/show.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<x-separator />
<x-card.detail-container id="kt_manager_view_details">
<x-card.detail-row property="Name" value="{{ $manager->full_name }}" />
<x-card.detail-row property="Start Date" value="{{ $manager->employedAt?->toDateString() ?? 'No Start Date Set' }}" />
<x-card.detail-row property="Start Date" value="{{ $manager->startedAt?->toDateString() ?? 'No Start Date Set' }}" />
</x-card.detail-container>

@if ($manager->isUnemployed())
Expand Down

0 comments on commit 7a0fbaf

Please sign in to comment.