@forelse($info as $invoice) @empty @endforelse
{{trans('label.SL')}} {{trans('label.Order Id')}} {{trans('label.Customer')}} {{trans('label.Phone')}} {{trans('label.Sales')}} {{trans('label.Received')}} {{trans('label.Cash Sales')}} {{trans('label.Due Amount')}} {{trans('label.Created at')}} {{trans('label.Action')}}
{{$loop->iteration}} {{$invoice->id}} {{$invoice->customer->name ?? 'Cash'}} {{$invoice->customer->phone ?? null}} {{$invoice->payment_amount}} {{$invoice->receive_amount_from_custome}} {{$invoice->initial_received}} {{$due=($invoice->payment_amount-$invoice->receive_amount_from_custome)}} {{$invoice->created_at}} {{trans('label.view details')}} |