@extends('admin.layouts.app')
@section('title', 'Products')
@section('content')
| Image |
Product Name |
Product cate |
Price |
Stock |
Actions |
{{-- Loop through the products passed from the controller --}}
@foreach ($products as $product)
{{-- Display the product image --}}
@if($product->image)
@else
@endif
|
{{ $product->name }} |
{{ $product->category->name ?? 'N/A' }} |
₹ {{ number_format($product->price, 2) }} |
{{ $product->stock }} |
|
@endforeach
@endsection