@extends('layouts/myorder') {{-- Page title --}} @section('title') @parent @stop {{-- page level styles --}} @section('header_styles') @stop {{-- Page content --}} @section('content')

Report

Delivered

@foreach($report as $res) @endforeach
Si.No Order No Ref. No Supplier Customer Details Location Delivery Date Amount
{{++$i}} {{$res->order_no}} {{$res->invoice_no}} {{$res->name}} {{$res->r_location}} {{date('d-m-Y h:i a', strtotime($res->delivered_date))}} {{$res->amount}}
Total Amount {{number_format($total,2)}}

Cancelled

@foreach($cancelled as $res) @endforeach
Si.No Order No Ref. No Supplier Customer Details Location Delivery Date Amount
{{++$i}} {{$res->order_no}} {{$res->invoice_no}} {{$res->name}} {{$res->r_location}} {{date('d-m-Y h:i a', strtotime($res->delivered_date))}} {{$res->amount}}
Total Amount {{number_format($total,2)}}

Picked-up

@foreach($pickedup as $res) @endforeach
Si.No Order No Ref. No Supplier Customer Details Location Pickup Date Amount
{{++$i}} {{$res->order_no}} {{$res->invoice_no}} {{$res->name}} {{$res->d_location}} {{date('d-m-Y h:i a', strtotime($res->pickup_datetime))}} {{$res->pickup_amount}}
Total Amount {{number_format($total,2)}}
@stop {{-- page level scripts --}} @section('footer_scripts') @stop