@extends('layouts.app') @section('title', $product->name) @section('description', $product->summary) @section('content')
@if ($product->image_path) {{ $product->name }} @else
{{ __('shop.brand_short') }}
@endif
@if ($product->badges)
@foreach ($product->badges as $badge) {{ __("shop.badges.{$badge}") }} @endforeach
@endif

{{ $product->name }}

@if ($product->summary)

{{ $product->summary }}

@endif
@csrf @if ($product->options->isNotEmpty())
{{ __('shop.choose_option') }}
@foreach ($product->options as $index => $option) @endforeach
@endif
@if ($product->description)

{{ $product->description }}

@endif @if ($product->origin || $product->serves) @endif
@if ($related->isNotEmpty())
@foreach ($related as $item) @endforeach
@endif @endsection