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