@extends('layouts.app') @section('content')
Product Images: {{ $product->name }}

@if(session('success')) @endif @if($images->isEmpty())
No images found for this product

Upload images to showcase this product

Upload Images
@else
@foreach($images as $image)
Product Image
#{{ $loop->iteration }}
{{ $image->created_at->format('M d, Y') }}
@csrf @method('DELETE')
@endforeach
Total {{ $images->count() }} images for this product
Upload Images
@endif
@endsection