@extends('warehouse.app') @section('title', __('warehouse.edit_entry')) @section('content') @include('components.errors')
@lang('warehouse.edit_entry')
@csrf @method('PUT')
@error('file')
{{ $message }}
@enderror

{{ __('w_damage.details_title') }}


{{-- Dynamic items table if you want to edit items --}} @foreach ($entry->items as $index => $item) @endforeach
# {{ __('w_damage.item_id') }} {{ __('w_damage.quantity') }} {{ __('w_damage.unit') }} {{ __('w_damage.actions') }}
{{ $index + 1 }} {{ $item->name }} {{ $item->unit->name }}
@lang('w_damage.back')
@endsection