@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' => 'sales.customer','method' => 'POST', 'class' => 'form-inline margin-bottom-0','id' => 'myform')) !!}
{!! __('Invoice') !!} | {!! __('Customer name') !!} | {!! __('Mobile') !!} | {!! __('Region') !!} | {!! __('Date of request') !!} | {!! __('Total') !!} | |
---|---|---|---|---|---|---|
{{ $loop->index + $orders->firstItem() }} | {!! $order->order_number !!} | {!! @$order->user->name !!} | {!! @Optional($order->user)->mobile !!} | {!! @Optional($order->destination)->title !!} | {{ $order->created_at->format('Y-m-d') }} | {!! $order->delivery+$order->price !!} {!! __('EGP') !!} |
{!! __('Total invoices') !!} | {!! number_format($orders->sum('price')+$orders->sum('delivery')) !!} {!! __('EGP') !!} |