Skip to content

Commit

Permalink
forget to include description in i18n
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimir-xz committed Sep 5, 2024
1 parent 4a7d58b commit 62c6314
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/views/labels/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
<tr>
<th>ID</th>
<th>{{ __('Name') }}</th>
<th>{{ __('Created at') }}</th>
<th>{{ __('Description') }}</th>
<th>{{ __('Created at') }}</th>
@auth
<th>{{ __('Actions') }}</th>
@endauth
Expand All @@ -28,7 +28,7 @@
<tr class="border-b border-dashed text-left">
<td>{{ $label->id }}</td>
<td>{{ __((string) $label->name) }}</td>
<td>{{ $label->description }}</td>
<td>{{ __($label->description) }}</td>
<td>{{ $label->created_at->format('d.m.Y') }}</td>
<td>
@can('delete', $label)
Expand Down

0 comments on commit 62c6314

Please sign in to comment.