@extends('layouts.admin') @section('title', 'Edit Laundry Order') @section('content')
@csrf @method('PUT')
Items
@php $oldItems = old('items', $order->items ?? [['description'=>'','quantity'=>1,'unit_price'=>0]]); @endphp @foreach($oldItems as $i => $line)
@endforeach
Cancel
@push('scripts')@endpush @endsection