@extends('layouts.seller.app', ['page' => $menuSeller['products']['active'] ?? ""]) @section('title', __('labels.product_details')) @section('header_data') @php $page_title = __('labels.product_details'); $page_pretitle = __('labels.seller') . " " . __('labels.product_details'); @endphp @endsection @php $breadcrumbs = [ ['title' => __('labels.home'), 'url' => route('seller.dashboard')], ['title' => __('labels.products'), 'url' => route('seller.products.index')], ['title' => __('labels.product_details'), 'url' => ''] ]; @endphp @section('seller-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