| {{ ($transactions->currentPage() - 1) * $transactions->perPage() + $key + 1 }}
|
{{ isset($transaction->order->order_no) ? '#' . $transaction->order->order_no . '(' . $transaction->order->payment_mode . ')' : '' }}
|
{{ $transaction->created_at ? App\Helpers\GeneralHelper::dateFormat2($transaction->created_at) : '' }}
{{ $transaction->created_at ? 'at ' . App\Helpers\GeneralHelper::timeFormat($transaction->created_at) : '' }}
|
@if ($transaction->type == App\Helpers\ConstantHelper::ORDER)
{{ '-' . $transaction->amount }}
@else
{{ '+' . $transaction->amount }}
@endif
|
@empty