@extends('layout.guest') @section('content') {{-- Latest news --}}

Latest News

@foreach ($latestNews as $item)
{{ $item->title }}
{{ $item->created_at->format('M d, Y') ?? '-' }}

{{ $item->title }}

@php $content = strip_tags($item->content); @endphp @if (strlen($content) > 100) {{ substr($content, 0, 100) . '...' }} [Read More] @else {{ $content }} @endif

{{-- @if (strlen($item->content) > 100) @endif --}}
@endforeach
@endsection @section('scripts') @endsection