@extends('admin.layouts') @section('title', 'Products') @section('header') @endsection @section('content')
| S/N | CATEGORY | SUB CATEGORY | TITLE | UNIT | PRICE | ACTION | |||
|---|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $product->category->name ?? 'N/A' }} | {{ $product->subcategory_name ?? 'N/A' }} | @forelse ($product->variants as $variant){{ $variant->title ?? 'N/A' }} | {{ $variant->unit ?? 'N/A' }} | {{ $variant->price ?? 'N/A' }} | @emptyNo variants available | @endforelseView | ||