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

Products

All products across every category.

+ New Product
@forelse ($products as $product) @empty @endforelse
Product Category Price Status
@if ($product->coverImageUrl()) @else ๐Ÿงด @endif

{{ $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
@csrf @method('DELETE')
No products yet โ€” add your first one.
{{ $products->links() }}
@endsection