@extends('layouts.app') @section('title', 'Kelola Berita') @section('content')
{{-- HEADER --}}

Kelola Berita

Kelola berita yang tampil di landing page perusahaan

{{-- INFO API --}}

API Publik untuk Landing Page

Landing page putrataropaloma.com bisa fetch berita dari:

GET https://hr.putrataropaloma.com/api/news GET https://hr.putrataropaloma.com/api/news/{id}
{{-- SUCCESS/ERROR --}} @if(session('success'))
{{ session('success') }}
@endif {{-- SEARCH --}}
@if($search) Reset @endif
{{-- GRID BERITA --}} @if($newsList->isEmpty())

Belum ada berita

Klik "Tambah Berita" untuk membuat berita pertama

@else
@foreach($newsList as $news)
{{-- Gambar --}}
@if($news->image_slider || $news->image) {{ $news->title }} @else
@endif {{-- Badge featured --}} @if($news->featured) Featured @endif {{ $news->category }}

{{ $news->title }}

{{ $news->excerpt }}

{{ $news->author }} {{ $news->published_at?->format('d/m/Y') ?? '-' }}
@csrf @method('DELETE')
@endforeach
{{-- PAGINATION --}} @if($newsList->hasPages())
{{ $newsList->links() }}
@endif @endif
{{-- ── MODAL TAMBAH ─────────────────────────────────────────────────────── --}} {{-- ── MODAL EDIT ───────────────────────────────────────────────────────── --}} @endsection