@if(empty(opt('logo', ''))) @else {{opt('site_title')}} logo @endif {{opt('site_title')}}
{{opt('footer_description') ?? opt('seo_description')}}
© {{date('Y')}} {{opt('site_title')}} - {{ __('All rights reserved') }}

{{ __('Latest from the Blog') }}

@php $latest_blog_post = \App\Models\Article::latest()->first(); @endphp @if($latest_blog_post)
{{substr($latest_blog_post->title,0,74)}} @if(strlen($latest_blog_post->title) > 74) ... @endif

{{substr(trim(strip_tags($latest_blog_post->content)),0,65)}} @if(strlen(trim(strip_tags($latest_blog_post->content))) > 65) ... @endif

@else -- @endif