@extends('layouts/default') {{-- Page title --}} @section('title') Invoice @parent @stop {{-- page level styles --}} @section('header_styles') @stop {{-- Page content --}} @section('content')

Job Estimate

{{Session::get('company')}}
Ph: {{Session::get('phone')}}, {{Session::get('address')}}
TRN No: {{Session::get('vatno')}}
ESTIMATE


Est. No: {{$details->voucher_no}}
Date: {{date('d-m-Y',strtotime($details->voucher_date))}}
Vch.Name: {{$details->name}}
Reg.No: {{$details->reg_no}}
Make: {{$details->make}}
Color: {{$details->color}}
{!! $details->header !!}
@foreach($items as $item) @endforeach
QO.# Description Qty. Unit Price VAT Total
{{$i}} {{$item->item_name}} {{$item->quantity}} {{number_format($unit_price,2)}} {{number_format($vat_amount,2)}} {{number_format($line_total,2)}}

Gross Total:

Vat Total:

Net Total:

{{number_format($total,2)}}

{{number_format($vat_amount_net,2)}}

{{number_format($net_total,2)}}

{!! $details->description !!}

For {{Session::get('company')}}.

@include('layouts.right_sidebar')
@stop {{-- page level scripts --}} @section('footer_scripts') @stop