@extends('admin.master') @section('content')
| Product Name | {{ $product->name }} |
|---|---|
| Slug | {{ $product->slug }} |
| Product Code | {{ $product->product_code }} |
| Category | {{ $product->category ? $product->category->name : 'N/A' }} |
| Subcategory | {{ $product->subcategory ? $product->subcategory->subcategoryName : 'N/A' }} |
| Brand | {{ $product->brand ? $product->brand->name : 'N/A' }} |
| Status | @if($product->status == 1) Active @else Inactive @endif |
| Top Sale | @if($product->topsale == 1) Yes @else No @endif |
| Feature Product | @if($product->feature_product == 1) Yes @else No @endif |
| Purchase Price | {{ number_format($product->purchase_price, 2) }} |
|---|---|
| Regular Price | {{ number_format($product->regular_price ?? 0, 2) }} |
| Discount Price | {{ number_format($product->discount_price, 2) }} |
| Stock | {{ $product->stock }} |
| Colors | @forelse($product->colors as $color) {{ $color->colorName }} @if($color->color) @endif @empty N/A @endforelse |
|---|---|
| Sizes | @forelse($product->sizes as $size) {{ $size->sizeName }} @empty N/A @endforelse |