@extends('layouts.app') @section('content')
{{ $product->short_description }}
{{ __('Brand') }} | :{{ __($product->brand?->name) }} |
{{ __('Categories') }} | :@foreach ($product->categories as $category) {{ __($category->name) }}@if (!$loop->last), @endif @endforeach |
{{ __('Colors') }} | :@foreach ($product->colors as $color) {{ __($color->name) }}@if (!$loop->last), @endif @endforeach |
{{ __('Sizes') }} | :@foreach ($product->sizes as $size) {{ __($size->name) }}@if (!$loop->last), @endif @endforeach |
{{ __('Price') }} | : {{ showCurrency($product->price) }} |
{{ __('Discount Price') }} | : {{ showCurrency($product->discount_price) }} |
{{ $product->quantity }}
{!! $product->description !!}