@extends('layouts.app') @section('content')
InventPRO Logo
@csrf @method('DELETE')
Inventory Name: {{ $inventories->name }}
Status: {{ $serial->status ?? 'Unknown' }}
Brand: {{ $inventories->brand }}
Date of Purchase: {{ $inventories->buy_date }}
Serial Number: {{ $serial->serialNo }}
Tag Number: {{ $serial->tagNumber }}
Holder: {{ $serial->holder }}
Location: {{ $serial->location->name }}
Pictures:
@foreach ($serial->images as $image) @foreach (range(1, 7) as $index) @php $imageField = 'image' . $index; @endphp @if ($image->$imageField)
@endif @endforeach @endforeach
@endsection