@extends('warehouse.app') @section('title', __('w_damage.title_show')) @section('content') @include('components.errors')
@lang('w_damage.title_show')

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


@foreach ($damage->items as $index => $item) @endforeach
# {{ __('w_damage.item_id') }} {{ __('w_damage.quantity') }} {{ __('w_damage.unit') }}
{{ $index + 1 }} {{ $item->item->name }} {{ $item->quantity }} {{ $item->item->unit->name }}
@lang('w_damage.back') @include('components.delete_modal', [ 'warning_message' => __('w_damage.delete_confirmation') . $damage->damage_number, 'destroy_route' => route('w_damage.destroy', $damage->id), ])
@endsection