@extends('admin.admin') @section('content')
| Item | Value |
|---|---|
| Name | :{{ $product->name }} |
| Category | :{{ $product?->category?->name ?? '' }} |
| Subcategory | :{{ $product?->subcategory?->name ?? '' }} |
| Brand | :{{ $product?->brand?->name ?? '' }} |
| Short Description | :{{ $product->short_description }} |
| Long Description | :{!! $product->long_description !!} |
| Price | :{{ $product->price }} TK |
| Offer Price | :{{ $product->offer_price ?? 'NA' }} TK |
| Product Code | :{{ $product->code ?? 'NA' }} |
| Seo Title | :{{ $product->seo_title ?? 'NA' }} |
| Seo Description | :{{ $product->seo_description ?? 'NA' }} |
| Show Homepage | :{{ $product->show_homepage == 1 ? 'Yes' : 'No' }} |
| Status | :{{ $product->status == 0 ? 'Inactive' : 'Active' }} |
| Image | : |