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

Purchase Return

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

PURCHASE RETURN

Supplier:

PR No: {{$details->voucher_no}}
Date: {{date('d-m-Y',strtotime($details->voucher_date))}}

@foreach($items as $item) @endforeach
Si.# Item Code Description Unit Qty. Unt.Price VAT Total
{{$i}} {{$item->item_code}} {{$item->item_name}} {{$item->unit_name}} {{$item->quantity}} {{number_format($item->unit_price,2)}} {{number_format($item->vat_amount,2)}} {{number_format($item->total_price,2)}}

Gross Total:

Vat Total:

Net Total:

{{number_format($details->total,2)}}

{{number_format($details->vat_amount,2)}}

{{number_format($details->net_amount,2)}}


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

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