@extends('admin.layouts.app') @section('title', 'Edit Wastage') @section('page_title', 'Edit Wastage') @section('content')
Edit Wastage
@csrf @method('PUT')
@error('date')
{{ $message }}
@enderror

Wastage Items
@foreach($wastage->items as $item) @endforeach
Product Quantity Rate Amount
Total Amount:
@error('notes')
{{ $message }}
@enderror
Cancel
@endsection @section('scripts') @endsection