@extends('warehouse.app') @section('title', __('w_entry.show')) @section('content') @include('components.errors')
@lang('w_entry.show')
@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->pivot->quantity }} {{ $item->unit->name }}
@lang('w_damage.back') @include('components.delete_modal', [ 'warning_message' => __('w_entry.confirm_delete_message') . $entry->entry_number, 'destroy_route' => route('entries.destroy', $entry->id), ])
@endsection