@extends('layouts.admin') @section('page-title', 'Products') @section('content')
You have total {{ $products->total() }} products
| # | Title | Vendor | Detail | Warehouse | Stock | Published | Featured | Options | |
|---|---|---|---|---|---|---|---|---|---|
| {{ $products->firstItem() + $index }} | @if($product->vendor) {{ $product->vendor->name }} @else Admin Product @endif |
Price: ${{ number_format($product->price, 2) }} Sales: {{ $product->sales_count ?? 0 }} | Rating: {{ $product->rating ?? 0 }} |
@if(($product->warehouse ?? 'ghana') === 'china') 🇨🇳 China @else 🇬🇠Ghana @endif | {{ $product->stock_quantity }} | |||||
|
No products found Try adjusting your filters or add a new product |
|||||||||