@extends($activeTemplate . 'layouts.master') @section('content')
| @lang('Date Time') | @lang('Category') | @lang('Quantity') | @lang('Amount') | @lang('Charge') | @if (count($buyHistories) > 0 && $vat > 0)@lang('Vat') | @endif
|---|---|---|---|---|---|
| {{ showDateTime($buyHistory->created_at) }} | {{ $buyHistory->category->name }} | {{ showAmount($buyHistory->quantity, 4, currencyFormat: false) }} @lang('gram') | {{ showAmount($buyHistory->amount) }} | {{ showAmount($buyHistory->charge) }} | @if (count($buyHistories) > 0 && $vat > 0){{ showAmount($buyHistory->vat) }} | @endif