@extends('master.app') @section('title', 'customer') @section('body')
@include('purchase.suppliers.bills.next-header-form') @include('purchase.suppliers.bills.next-item-table')

Invoice Details

@csrf @method('post')
@if ($bdate == 1) @else
@endif
@php $total = ''; if ($bill_items->sum('total') == 0) { $total = $bill->grand_total; } else { $total = $bill_items->sum('total') - $bill->discount; } @endphp
@php $dr = $bill->payment; $i_total = $bill->grand_total; $balance = $i_total - $dr; @endphp
@endsection @section('pageJs') @endsection