Skip to content

Commit

Permalink
Merge pull request #10828 from snipe/fixes/10826_parse_error_on_print…
Browse files Browse the repository at this point in the history
…_all

Fixed #10826 - parse error on translation string for print all assets
  • Loading branch information
snipe authored Mar 16, 2022
2 parents f499dcf + 781b426 commit 40a9470
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/users/print.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@
{{ ($consumable->manufacturer) ? $consumable->manufacturer->name : '' }} {{ $consumable->name }} {{ $consumable->model_number }}
@endif
</td>
<td>{{ ($consumable->category) ? $consumable->category->name : '{{ trans('general.invalid_category') }}' }} </td>
<td>{{ ($consumable->category) ? $consumable->category->name : trans('general.invalid_category') }} </td>
<td>{{ $consumable->assetlog->first()->created_at }}</td>
</tr>
@php
Expand Down

0 comments on commit 40a9470

Please sign in to comment.