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

Total :

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

@endif
@endsection