@extends('admin.layouts.master') @section('content') @if (count($orders))
All on-hold processing artwork-issue completed shipped
@foreach ($orders as $row)
Notice: Undefined variable: row in /home/admin2bannerworl/public_html/admin2.bannerworld.co.uk/resources/views/admin/orders/index.blade.php on line 142

Notice: Trying to get property 'date_created' of non-object in /home/admin2bannerworl/public_html/admin2.bannerworld.co.uk/resources/views/admin/orders/index.blade.php on line 142
@foreach($row->meta_data as $metaData) @if($metaData->key == 'assigned_to')
Notice: Undefined variable: metaData in /home/admin2bannerworl/public_html/admin2.bannerworld.co.uk/resources/views/admin/orders/index.blade.php on line 159

Notice: Trying to get property 'value' of non-object in /home/admin2bannerworl/public_html/admin2.bannerworld.co.uk/resources/views/admin/orders/index.blade.php on line 159
@endif @endforeach @endforeach
Notifications Order ID Order Date Customer Status Value Assigned To  
{{ $row->id }} {{ $date }} {{ $row->billing->company }}
{{ $row->billing->first_name }} {{ $row->billing->last_name }}
{{ $row->billing->email }}
@if($row->status == 'pre-order') Account Processing @else {{ ucfirst($row->status) }} @endif £{{ ucfirst($row->total) }} {{ $assignedto }} {!! link_to_route(config('quickadmin.route').'.orders.view', 'View', array($row->id), array('class' => 'btn btn-xs')) !!} {!! link_to_route(config('quickadmin.route').'.orders.index', 'Assign', array($row->id), array('class' => 'btn btn-xs assignuser', 'id' => $row->id)) !!} @if(!feedbackController::check($row->billing->email) && $row->status == 'shipped' &&(strtotime($row->date_modified) < strtotime('-6 days'))) @endif
@else {{ trans('quickadmin::templates.templates-view_index-no_entries_found') }} @endif @endsection @section('javascript') @stop