@extends('layouts.app') @section('content')

📰 Daftar Berita

{{-- 📝 Buat Berita Baru --}}
@forelse ($news as $item)
{{-- Gambar --}} @if ($item->image)
{{ $item->title }}
@else
Tidak ada gambar
@endif {{-- Konten --}}

{{ $item->title }}

📅 {{ \Carbon\Carbon::parse($item->publish_date)->format('d M Y') }} 📁 Kategori: {{ $item->category }} 👤 Oleh: {{ $item->user->name ?? 'Tidak diketahui' }}

{{ \Illuminate\Support\Str::limit(strip_tags($item->content), 100, '...') }}

🔍 Lihat Detail @auth @if (auth()->id() === $item->user_id) ✏️ Edit
@csrf @method('DELETE')
@endif @endauth
@empty
Belum ada berita yang tersedia.
@endforelse
@endsection