@extends('store.themes.modern-coffee-shop.layouts.app') @section('title', $product->name) @section('meta_description', $product->description_short ?? $product->name) @section('content')
{{ $product->name }}

{{ $product->name }}

@if($product->description_short)

{{ $product->description_short }}

@endif
{{ number_format($product->price, 2) }} {{ __('EGP') }}
@if($product->variants->count() > 0)

{{ __('Select Option') }}

@foreach($product->variants as $variant) @endforeach
@endif
@if($product->description)

{{ __('Description') }}

{!! $product->description !!}
@endif
@if($relatedProducts->count() > 0)

{{ __('Related Products') }}

@foreach($relatedProducts as $related)
{{ $related->name }}

{{ Str::limit($related->name, 40) }}

{{ number_format($related->price, 2) }} {{ __('EGP') }}

@endforeach
@endif
@endsection