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

Delivery Order

@include('main.print_head')

DELIVERY NOTE

Account No: {{$details->account_id}}
Customer Name:
Address:

Telephone No: {{$details->phone}}
DO.No: {{$details->voucher_no}}
Date: {{date('d-m-Y',strtotime($details->voucher_date))}}
LPO No: {{$details->reference_no}}
Ship To: {{$details->description}}
Payment Terms: {!! $details->terms !!}
@foreach($items as $item) @endforeach
Si.# Item Code Description Unit Qty.
{{$i}} {{$item->item_code}} {{$item->item_name}} {{$item->unit_name}} {{$item->quantity}}
Total Quantity: {{$qtytotal}}
@include('layouts.right_sidebar')
@stop {{-- page level scripts --}} @section('footer_scripts') @stop