@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 !!}