@extends('admin.master') @section('title', $product->name) @push('styles') @endpush @section('content') @php $displayPrice = $product->sale_price ?? $product->regular_price; $hasDiscount = $product->sale_price !== null && (float) $product->sale_price < (float) $product->regular_price; @endphp
{{ $product->pre_order_message }}
| Name | SKU | Attributes | Price | Stock | Default |
|---|---|---|---|---|---|
| {{ $variant->name }} | {{ $variant->sku }} | {{ $variant->attributeValues->map(function ($value) { return $value->attribute?->name . ': ' . $value->value; })->join(', ') ?: '—' }} | ৳{{ number_format((float) ($variant->sale_price ?? $variant->regular_price), 2) }} | {{ $variant->stock_quantity }} | {{ $variant->is_default ? 'Yes' : 'No' }} |
{{ $product->meta_keywords ?? '—' }}
{{ $product->meta_description ?? '—' }}