@extends('backend.layout') @section('backend_content')
| Image | Product Title | Price | Offer Price | Stock | Created By | Actions |
|---|---|---|---|---|---|---|
|
@if ($product->feature_image)
|
{{ $product->product_title }} | ${{ number_format($product->price, 2) }} | {{ $product->offer_price ? '$' . number_format($product->offer_price, 2) : '-' }} |
@if ($product->stock > 0)
{{ $product->stock }} in stock
@else
Out of stock
@endif
@if ($product->hasVariantInventory())
{{ count($product->variantInventory()) }} tracked variants
@endif
|
{{ $product->creator->name }} | |
|
No products found Add your first product |
||||||