@extends('layouts.admin-layout') @section('title', 'All Products ') @section('content')
@csrf

Product Section

Profile Preview

Product Section

@foreach($products as $key => $product) @endforeach
# Photo Name Category Price Stock Status Created Action
{{ $key + 1 }} @if($product->productImage()) @else N/A @endif {{ $product->name }} {{ $product->category->name ?? '-' }} {{ $product->price }} {{ $product->stock_quantity }} @if($product->status) Active @else Inactive @endif {{ $product->created_at->format('d M Y') }} Edit
@csrf @method('DELETE')
@endsection @section('script') @endsection