| {{ trans('validation.attributes.name') }} |
{{ trans('validation.attributes.type') }} |
{{ trans('global.quantity') }} |
{{ trans('validation.attributes.unit_cost') }} |
{{ trans('front.total') }} |
|
@if ($expenses->isEmpty())
| {!!trans('front.nothing_found_request')!!} |
@else
@foreach ($expenses as $expense)
| {{ $expense->name }} |
{{ $expense->type->name or '' }} |
{{ $expense->quantity }} |
{{ $expense->unit_cost }} |
{{ $expense->total }} |
|
@endforeach
@endif
@if (!$expenses->isEmpty())
@endif
{{ trans('front.total') }}: {{ $total ?? '-' }}