@php use App\Enums\Product\ProductVarificationStatusEnum;use Illuminate\Support\Str; @endphp @extends('layouts.admin.app', ['page' => $menuAdmin['products']['active'] ?? "", 'sub_page' => $menuAdmin['products']['route']['products']['sub_active']]) @section('title', __('labels.product_details')) @section('header_data') @php $page_title = __('labels.product_details'); $page_pretitle = __('labels.admin') . " " . __('labels.product_details'); @endphp @endsection @php $breadcrumbs = [ ['title' => __('labels.home'), 'url' => route('admin.dashboard')], ['title' => __('labels.products'), 'url' => route('admin.products.index')], ['title' => __('labels.product_details'), 'url' => ''] ]; @endphp @section('admin-content')
| {{ __('labels.store') }} | {{ __('labels.sku') }} | {{ __('labels.price') }} | {{ __('labels.special_price') }} | {{ __('labels.cost') }} | {{ __('labels.stock') }} |
|---|---|---|---|---|---|
| {{ $storePricing['store_name'] }} | {{ $storePricing['sku'] }} | {{ $systemSettings['currencySymbol'] . number_format($storePricing['price'], 2) }} | {{ $storePricing['special_price'] ? $systemSettings['currencySymbol'] . number_format($storePricing['special_price'], 2) : 'N/A' }} | {{ $storePricing['cost'] ? $systemSettings['currencySymbol'] . number_format($storePricing['cost'], 2) : 'N/A' }} | {{ $storePricing['stock'] }} |
{{ __('labels.no_store_pricing_available') }}
@endif