@extends('layouts.app') @section('content')

Edit Sale Bill - {{ $sale->bill_no }}

Back
@if ($errors->any())
Please fix the following errors:
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
Note: Editing this bill will automatically reverse and re-post stock and ledger entries.
@csrf @method('PUT')

Sale Items (FINISH Products)

@foreach($sale->items as $index => $saleItem) @endforeach
# Item Available Qty Unit Rate Amount
{{ $index + 1 }}
Gross Amount: Rs. {{ number_format($sale->sub_total, 2) }}
Discount (-):
Net Amount: Rs. {{ number_format($sale->total_amount, 2) }}
Cancel
@endsection