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

Item Enquiry

{{$heading}} History

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

Item Code: {{$details->item_code}}
Item Name: {{$details->description}}

@foreach($items as $item) @endforeach
Inv.No. Ref.No. Cust/Supp Name Inv.Date Qty. Price Unit Desc. Cost Avg.
{{$item->voucher_no}} {{$item->reference_no}} {{$item->master_name}} {{date('d-m-Y',strtotime($item->voucher_date))}} {{$item->quantity}} {{ number_format($item->unit_price,2) }} {{ number_format($item->total_price,2) }} {{ number_format($item->total_price,2) }}
@include('layouts.right_sidebar')
@stop {{-- page level scripts --}} @section('footer_scripts') @stop