@extends('layouts.apoteker') @section('title', '📰 Berita Saya') @section('content')

📰 Berita Saya

➕ Tulis Berita
{{-- Filter --}}
🔄 Reset
{{-- Tabel Berita --}}
@forelse($news as $item) @php $ext = pathinfo($item->image, PATHINFO_EXTENSION); $isVideo = in_array(strtolower($ext), ['mp4', 'webm', 'ogg']); @endphp @empty @endforelse
# Media Judul Kategori Tanggal Aksi
{{ $loop->iteration + ($news->currentPage() - 1) * $news->perPage() }} @if ($item->image) @if ($isVideo) @else @endif @else Tidak ada @endif {{ $item->title }} {{ $item->category }} {{ \Carbon\Carbon::parse($item->publish_date)->translatedFormat('d M Y') }} ✏️ Edit
@csrf @method('DELETE')
Belum ada berita yang ditulis.
{{ $news->links('vendor.pagination.tailwind') }}
@endsection @push('scripts') @endpush