@extends('admin.layouts.admin') @section('title', 'Products') @section('content')
All products across every category.
| Product | Category | Price | Status | |
|---|---|---|---|---|
|
@if ($product->coverImageUrl())
{{ $product->getTranslation('name', 'kn') }} @if ($product->is_featured) โ Featured @endif |
{{ $product->category->getTranslation('name', 'kn') }} | {{ $product->price ? 'โน'.number_format((float) $product->price, 2) : 'โ' }} | {{ $product->is_active ? 'Active' : 'Hidden' }} | Edit |
| No products yet โ add your first one. | ||||