@extends('admin.layout.master') @section('title') Edit Product Images @endsection @section('content')
Edit Product Images
@forelse($product->images as $t=>$img) @empty @endforelse
Id Image Name Created At Delete
{{ $t+1 }} {{ $product->name }} {{ Carbon\Carbon::parse($img->created_at)->format('d-m-Y') }}
@endsection @section('script') @endsection