@extends('layouts.AdminMaster') @section('content')
{!! Form::open(['url'=>'admin/reports/sales/city/report', 'method'=>'post']) !!}
{!! Form::close() !!}
@if(isset($orders)) @foreach($orders as $order) @endforeach
# Invoice No Date Amount
{{++$x}} {{$order->invoice->invoice_id}} {{$order->invoice->date}} {{$order->invoice->total}}

Total :

@if(isset($total)) {{$total}} @else 000,000 @endif

@endif
@endsection