@extends('public.layout') @section('title', ($post->meta_title ?: $post->title) . ' | GiGi Food Partner') @section('meta_description', $post->meta_description ?: ($post->excerpt ?: \Illuminate\Support\Str::limit(strip_tags($post->content), 155))) @section('content') @php $coverImage = null; if (is_string($post->cover_image) && $post->cover_image !== '') { $coverImage = preg_match('/^(https?:)?\/\//i', $post->cover_image) ? $post->cover_image : url($post->cover_image); } @endphp
@if ($coverImage)
{{ $post->title }}
@endif
{{ $post->published_at?->format('d/m/Y H:i') }} Blog

{{ $post->title }}

@if ($post->excerpt)

{{ $post->excerpt }}

@endif {!! $htmlContent !!}
@endsection