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

Edit Purchase Bill - {{ $purchase->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')

Purchase Items (RAW Materials)

@foreach($purchase->items as $index => $purchaseItem) @endforeach
# Item Current Stock Qty Unit Rate Amount
{{ $index + 1 }}
Gross Amount: Rs. {{ number_format($purchase->gross_amount, 2) }}
Discount (-):
Net Amount: Rs. {{ number_format($purchase->net_amount, 2) }}
Cancel
@endsection