@section('contents')
@if($Product->Image->filename) @else @endif

{!! $Product->{'title_'.$Locale} !!} {!! $Product->price !!}

{{ $Product->state == 1 ? __('lang.Available') : __('lang.Not_Available') }}

{!! date('M j, Y', strtotime($Product->created_at)) !!}

{!! $Product->{'body_'.$Locale} !!}

@if(session('Comments')) @endif @if(session('Delete_Comments')) @endif @if($Comments->isEmpty()) @guest @endguest
{!! __('lang.AllComments') !!}
@else
{!! count($Comments) !!} {!! __('lang.AllComments') !!}
@endif @if($Comments->isEmpty()) @else @foreach($Comments as $Comment)
@if(isset($Comment->User->Image->filename)) avatar @else avatar @endif
@if(isset($Comment->User->name))
{!! $Comment->User->name !!}
@else @endif

{!! date('M j, Y', strtotime($Comment->created_at)) !!}

{!! $Comment->Comment !!}

@auth @if($Comment->User->id == Auth::user()->id)
@csrf @method('DELETE')
@else @endif @endauth

@endforeach @endif
@csrf
{!! __('lang.LeaveComment') !!}

{!! __('lang.Comment_content') !!}

@error('Comments') @enderror
😊 😁 😎 🤗 🎉 🤩 🍔 🍕 🍟 🌮 🍣 🍩 😢 😟 😞 😭 😔 😠 😍 ❤️ 💖 💯 👍 👏 🎶 🔥 🎂 🚀 🌟 🧁 🍿 🍹 🥤 🍺 🍫 🍎 🍇 🍓 🍍 🥥 🍜
@foreach($Categories as $Category)

{!! $Category->{'title_'.$Locale} !!}

@endforeach
@foreach($sideProducts as $sideProduct)
@if(isset($sideProduct->Image->filename)) Product @else @endif
{!! $sideProduct->{'title_'.$Locale} !!}

{!! substr($sideProduct->{'body_'.$Locale}, 0, 60) !!}

{!! $sideProduct->price !!}
@endforeach

{!! __('lang.Recipes') !!}

@endsection