@extends('pages.layouts.app') @section('content') @push('styles') @endpush

{{ app()->getLocale() === 'ar' ? $product->name_ar : $product->name }}

{{ app()->getLocale() === 'ar' ? 'دأ ' : 'JD' }} @if($product->price_after_discount) {{ $product->price }} {{ $product->price_after_discount }} @else {{ $product->price }} @endif

{{ app()->getLocale() === 'ar' ? $product->description_ar : $product->description }}

{{ __('Available Colors') }}

@if ($product->colors->isNotEmpty()) @foreach ($product->colors->chunk(5) as $colorChunk)
    @foreach ($colorChunk as $color)
  • @endforeach
@endforeach @else

{{ __('No colors available') }}

@endif
{{--
Your order qualifies for free shipping!
--}}
{{-- --}}
@auth @endauth
0 People watching this product now!
@endsection