@extends('backEnd.layouts.master') @section('title', 'Products') @push('styles') @endpush @section('content')
| Product Name | SKU | Category, Brand | Price | Sales | Stock | Status | Action | |
|---|---|---|---|---|---|---|---|---|
|
@if($product->thumbnail)
@endif
#{{ $product->id }}
{{ Str::limit($product->name, 45) }}
{{ $product->slug }}
|
{{ $product->category?->name ?? 'Uncategorized' }}
{{ $product->brand?->name ?? 'No Brand' }}
|
৳{{ number_format($sellPrice, 2) }}
@if($product->sale_price && $product->sale_price < $product->price)
৳{{ number_format($product->price, 2) }}
@endif
|
{{ $sold }} Sold | @if($product->stock <= 0) Out of Stock @elseif($product->stock <= 5) Low: {{ $product->stock }} @else In Stock @endif | @if($tab === 'trashed') Deleted @elseif($product->status) Publish @else Draft @endif | |||
|
No products found.
Add your first product
|
||||||||