@extends('admin.layouts.app') @section('title', 'Products') @section('content')

Product List

Add Product
{{-- Loop through the products passed from the controller --}} @foreach ($products as $product) @endforeach
Image Product Name Product cate Price Stock Actions
{{-- Display the product image --}} @if($product->image) {{ $product->name }} @else No Image @endif {{ $product->name }} {{ $product->category->name ?? 'N/A' }} ₹ {{ number_format($product->price, 2) }} {{ $product->stock }}
@csrf
@endsection