@extends('layout.mainlayout') @section('content')
@if (session('success')) @endif @if (session('error')) @endif
Product List
Template
@forelse($products as $product) @empty @endforelse
ID Category Product Name Product Price Status Image Action
{{ $product->id }} {{ $product->category_name ?? '—' }} {{ $product->name }} Tsh {{ number_format($product->price, 2) }} {{ $product->status === 'available' ? 'Available' : 'Unavailable' }} @if($product->image) {{ $product->name }} @else @endif
No products found. Click Add to create one.
@endsection