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

Products

Add Product
@foreach($products as $product) @forelse ($product->variants as $variant) @empty @endforelse @endforeach
S/N CATEGORY SUB CATEGORY TITLE UNIT PRICE ACTION
{{ $loop->iteration }} {{ $product->category->name ?? 'N/A' }} {{ $product->subcategory_name ?? 'N/A' }}{{ $variant->title ?? 'N/A' }} {{ $variant->unit ?? 'N/A' }} {{ $variant->price ?? 'N/A' }}No variants available View
@foreach($products as $product) @endforeach
@endsection @section('footer') @endsection