@section('title','Reorder invoice') @extends('layouts.master') @section('style') {{-- {{Html::style('assets/public_css/index.css')}} --}} @endsection @section('content')
| {{trans('label.SL')}} | {{trans('label.Order No')}} | {{trans('label.Customer Name')}} | {{trans('label.Order Date')}} | {{trans('label.Total Amount')}} | {{trans('label.Discount')}} | {{trans('label.Vat')}} | {{trans('label.Created By')}} | {{trans('label.Action')}} |
|---|---|---|---|---|---|---|---|---|
| {{ $park_invoice->id }} | {{ $park_invoice->order_date }} | @if(isset($customer_profiles)) @foreach($customer_profiles as $customer) @if($customer->id == $park_invoice->customer_Id) {{ $customer->id }} - {{ $customer->name }} @endif @endforeach @endif | {{ $park_invoice->order_date }} | {{ number_format($park_invoice->gross_amount,2)}} | {{ number_format($park_invoice->gross_discount ,2)}} | {{ number_format($park_invoice->gross_vat_amount,2) }} | @if(isset($user)) @foreach($user as $users) @if($users->id == $park_invoice->employee_id) {{ $users->name }} @endif @endforeach @endif | {{trans('label.Process')}}| {{trans('label.Delete')}} |