@extends('layouts.app') @section('header')
@endsection @section('content') @php $computeTotal = $computeSubTotal = 0; @endphp
{{ csrf_field() }}

{{-- --}} {{-- --}}




@foreach($saleList as $list) @endforeach @php $computeTotal += $list->total; $computeSubTotal += $list->price * $list->quantity; @endphp
Item (Cat. No) Description Qty UOM Tax Rate Total
@php if(empty($list->catalogue)) $itemName = $list->name; else $itemName = $list->name." (".$list->catalogue.")"; @endphp




@endsection @section('scripts') @include('billing.estimate.inc.script') @endsection