@extends('public.layouts.guest') @section('nav_explore', 'text-teal-700 font-semibold') @section('nav_news', 'text-teal-700 font-semibold bg-teal-50/50') @section('title', $post->title . ' — ' . \App\Models\Setting::get('property_name','Parkview Hotel CDO')) @section('meta_description', $post->excerpt ?: \Illuminate\Support\Str::limit(strip_tags($post->bodyHtml()), 155)) @section('og_image', $post->cover_image ? \Illuminate\Support\Facades\Storage::url($post->cover_image) : '') @section('og_type', 'article') @push('jsonld') @endpush @section('content')
All News
@if($post->category){{ $post->category }}·@endif {{ $post->published_at->format('F j, Y') }}

{{ $post->title }}

@if($post->cover_image) {{ $post->title }} @endif
@if($post->excerpt)

{{ $post->excerpt }}

@endif
{!! $post->bodyHtml() !!}
@if($recent->count())

More News

@endif
@endsection