{{-- --}} @if ($orders->count() > 0) @foreach ($orders as $key => $order) {{-- --}} @endforeach @endif
Financial Report
Id {{ __('admin.invoice_no') }} {{ __('label.date') }} {{ __('admin.business_artists') }} {{ __('admin.customer_name') }} {{ __('admin.service_name') }} {{ __('admin.total_amount') }} {{ __('admin.commsion') }} {{ __('admin.tip') }} Wallet {{ __('label.amount_paid') }} Refund Fee Refund Amount Payment Mode {{ __('admin.status') }}
{{ $loop->iteration }} {{ $order->order_no }} {{ date('d-m-Y', strtotime($order->date)) }} {{ @$order['branch_detail']['name_en'] }} {{--
{{ @$order['branch_detail']['address'] }} --}}
{{ @$order['user_detail']['first_name'] . ' ' . @$order['user_detail']['last_name'] }} {{--
{{ @$order['user_detail']['mobile_code'] }} {{ @$order['user_detail']['mobile_number'] }} --}}
@foreach ($order['orderItems'] as $item) {{ $item['service_detail']['name_en'] }} @unless ($loop->last) , @endunless @endforeach {{ 'EGP ' . $order->total_amount }} {{ $order->settlement_percentage . '%' }} {{ 'EGP ' . $order->tip_amount }} {{ 'EGP ' . $order->wallet }} {{ 'EGP ' . $order->total_paid + $order->tip_amount + $order->wallet }} {{ 'EGP ' . $order->admin_value + $order->business_user_value }} {{ 'EGP ' . $order->refund_amount }} {{ ucwords($order->payment_mode) }} @if ($order->status == App\Helpers\ConstantHelper::CANCELLED) {{ ucfirst($order->status) }} @else {{ ucfirst($order->payment_status) }} @endif