{{ $approval->number }}
|
{{ date_format(date_create($approval->created), 'd M Y H:i:s') }} |
{{ $approval->category_name }} |
@if (empty($approval->description))
{{ '-' }}
@else
@php
$description = str_replace("\"", "\'\'", $approval->description);
$description = nl2br($description);
@endphp
{{ mb_strimwidth(strip_tags($approval->description), 0, 30, '...') }}
@endif
|
Rp{{ number_format($approval->amount, 0, ',', '.') }} |
|
{{ $approval->creator_name }} |
|
@if (!empty($approval->file_1))
@endif
@if (!empty($approval->file_2))
@endif
|
@if ($approval->total_transaction > 0)
{{ $approval->total_transaction . ' trns' }}
@endif
|