@extends($activeTemplate . 'layouts.master') @section('content')
| @lang('Date & Time') | @lang('Type') | @lang('Category') | @lang('Quantity') | @lang('Amount') | @lang('Charge') | @if ($assetLogs->sum('vat') > 0)@lang('Vat') | @endif@lang('Action') |
|---|---|---|---|---|---|---|---|
|
{{ showDateTime($assetLog->created_at, 'd M, Y') }}
{{ showDateTime($assetLog->created_at, 'h:i A') }}
|
@php echo $assetLog->statusBadge @endphp | {{ $assetLog->category->name }} | {{ showAmount($assetLog->quantity, 4, currencyFormat: false) }} @lang('gram') | {{ showAmount($assetLog->amount) }} | {{ showAmount($assetLog->charge) }} | @if ($assetLogs->sum('vat') > 0){{ $assetLog->type == Status::BUY_HISTORY ? showAmount($assetLog->vat) : '-' }} | @endif@if ($assetLog->type == Status::REDEEM_HISTORY) @else @endif |