@extends('home') @section('title') @lang('site.site_name') @endsection @section('styles') {!! Html::style(Theme::current()->assetPath.'/pages/css/profile.min.css') !!} {!! Html::style(Theme::current()->assetPath.'/global/plugins/bootstrap-markdown/css/bootstrap-markdown.min.css') !!} {!! Html::style(Theme::current()->assetPath.'/global/plugins/bootstrap-fileinput/bootstrap-fileinput.css') !!} {!! Html::style(Theme::current()->assetPath.'/global/plugins/bootstrap-switch/css/bootstrap-switch.min.css') !!} {!! Html::style(theme_url('css/bootstrap-datepicker.min.css')) !!} @endsection @section('content') {!! Form::open(array('route' => 'casher.orders','method' => 'POST', 'class' => 'form-horizontal','id' => 'myform')) !!}
{!! __('Search requests the following options') !!}
{!! __('Search requests by date') !!}
{!! __('Date of request') !!} -
@if ($orders->total() > 0)
{!! __('Results No') !!} ({{ $orders->total() }} {!! __('Order') !!})
@php $list_delivery =''; foreach ($users as $key => $user) { $list_delivery .= '' ; } @endphp @foreach ($orders as $index => $order) @endforeach
{!! __('Invoice') !!} {!! __('Name') !!} {!! __('Mobile') !!} {!! __('Region') !!} {!! __('Date of request') !!} {!! __('Subtotal') !!} {!! __('Confirm order') !!}
{{ $loop->index + $orders->firstItem() }} {!! $order->order_number !!} {!! @$order->user->name !!} {!! @$order->user->mobile !!} {!! @$order->destination->title !!} {{ $order->created_at->format('Y/m/d - h:i') }} {{ __($order->created_at->format('a')) }} {!! $order->price !!} {!! __('EGP') !!} @if (!$order->publish) @else @if ($order->publish == 1 ) {!! __('Done') !!} @else {!! __('Canceled') !!} @endif @endif
@else

{!! __('No Results') !!}


@endif
{!! Form::close() !!} @endsection @section('scripts') {!! Html::script(Theme::current()->assetPath.'/global/plugins/bootstrap-fileinput/bootstrap-fileinput.js') !!} {!! Html::script(Theme::current()->assetPath.'/global/plugins/bootstrap-markdown/lib/markdown.js') !!} {!! Html::script(Theme::current()->assetPath.'/global/plugins/bootstrap-switch/js/bootstrap-switch.min.js') !!} {!! Html::script(Theme::current()->assetPath.'/global/plugins/bootstrap-markdown/js/bootstrap-markdown.js') !!} {!! Html::script(Theme::current()->assetPath.'/global/plugins/jquery-validation/js/jquery.validate.min.js') !!} {!! Html::script(Theme::current()->assetPath.'/global/plugins/jquery-validation/js/additional-methods.min.js') !!} {!! Html::script(Theme::current()->assetPath.'/pages/scripts/form-validation.js') !!} {!! Html::script(Theme::current()->assetPath.'/global/plugins/jquery-ui/jquery-ui.min.js') !!} {!! Html::script(theme_url('js/bootstrap-datepicker.min.js')) !!} {!! Html::script(theme_url('js/bootstrap-datepicker.ar.min.js')) !!} @endsection