@include('layouts.head')
@include('layouts.header') @include('layouts.sidebar')

Orders Preview

@if (\Session::has('success'))
@endif
@foreach($orders as $o) @if($o->status == 'Completed') @elseif($o->status == 'Open') @elseif($o->status == 'Invoiced') @elseif($o->status == 'Partially Paid') @endif @endforeach
OrderNumber Location Total Balance Status Created By Edit Invoice
{{$o->orderNumber}} {{$o->location}} {{$o->grand_total}} {{$o->balance}} {{$o->status}} {{$o->status}} {{$o->status}} {{$o->status}}{{$o->createdByName}}
@include('layouts.footer')