@extends('layouts.bootstrap') @section('title', 'Confirm Product Merge') @section('header')
| Product Name | Category | Price | Country | Unit |
|---|---|---|---|---|
|
{{ $product->name }}
@if($product->description)
{{ Str::limit($product->description, 60) }} @endif |
@if($product->category)
{{ $product->category->name }}
@if($product->subcategory)
{{ $product->subcategory->name }} @endif @else Not set @endif |
@if($product->price) ৳{{ number_format($product->price, 2) }} @else Not set @endif | {{ $product->country_of_origin ?? 'Not set' }} | {{ $product->measurement_unit ?? 'Not set' }} |