@extends('admin.layouts.admin') @section('title', 'Products - SIVILIMA Admin') @section('breadcrumb_title', 'Products') @section('breadcrumb') @endsection @section('content') @if(session('success'))
{{ session('success') }}
@endif
All Products ({{ $products->count() }})
@forelse($products as $product) @empty @endforelse
# Image Name Category Price (Rs.) Order Status Actions
{{ $loop->iteration }} @if($product->image) @else - @endif {{ $product->name }} {{ $product->category->name ?? '-' }} {{ number_format($product->price, 2) }} {{ $product->sort_order }} @if($product->is_active) Active @else Draft @endif
@csrf @method('DELETE')
No products yet.
@endsection