{{ $item->title }}
{{-- Deskripsi --}}{{ Str::limit($item->description, 80, '...') }}
{{-- resources/views/kegiatan/search-kegiatan.blade.php --}}
@php
use Illuminate\Support\Str;
@endphp
@if($latest->count() > 0)
@foreach($latest as $item)
{{ Str::limit($item->description, 80, '...') }}
{{ $item->title }}
{{-- Deskripsi --}}
Tidak ada kegiatan yang sesuai.
@endif