@extends('layouts.app') @section('header-title', __('Product Details')) @section('content')
{{ $product->short_description }}
| {{ __('Brand') }} | : {{ __($product->brand?->name) }} |
| {{ __('Categories') }} | : {{ $categories }} |
| {{ __('Colors') }} | : {{ $colors }} |
| {{ __('Sizes') }} | : {{ $sizes }} |
| {{ __('Price') }} | : {{ showCurrency($product->price) }} |
| {{ __('Discount Price') }} | : {{ showCurrency($product->discount_price) }} |
{{ $product->quantity }}
{!! $product->description !!}