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

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

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

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

@foreach($RelatedBlogs as $RelatedBlog)
@if(asset($RelatedBlog->Image->filename)) RelatedBlog @else @endif

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

{!! substr($RelatedBlog->{'body_'.$Locale}, 0, 140) !!}

{{ $RelatedBlog->created_at->format('Y-m-d') }} {!! __('lang.SEEMORE') !!}
@endforeach
@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($ProductCategories as $Category)

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

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

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

{!! $Product->price !!}
@endforeach
@foreach($banners as $banner) @if(isset($banner->Image->filename)) @else @endif @endforeach

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

@endsection