152 lines
7.6 KiB
PHP
152 lines
7.6 KiB
PHP
<x-app-layout>
|
|
<x-slot name="header">
|
|
<div class="flex justify-between items-center">
|
|
<h2 class="font-semibold text-xl text-gray-800 leading-tight">
|
|
{{ __('Berita') }}
|
|
</h2>
|
|
<a href="{{ route('beritas.create') }}" class="inline-flex items-center px-4 py-2 bg-red-600 text-white text-sm font-medium rounded-lg hover:bg-red-700 transition-colors">
|
|
<i class="fas fa-plus mr-2"></i>
|
|
Tambah Berita
|
|
</a>
|
|
</div>
|
|
</x-slot>
|
|
|
|
<div class="py-12">
|
|
<div class="max-w-7xl mx-auto sm:px-6 lg:px-8">
|
|
@if(session('success'))
|
|
<div class="mb-6 bg-green-100 border border-green-400 text-green-700 px-4 py-3 rounded-lg">
|
|
{{ session('success') }}
|
|
</div>
|
|
@endif
|
|
|
|
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
|
|
@forelse($beritas as $berita)
|
|
<div class="bg-white overflow-hidden shadow-xl sm:rounded-2xl hover:shadow-2xl transition-shadow">
|
|
<!-- Image Section -->
|
|
@if($berita->gambar)
|
|
<div class="h-48 overflow-hidden">
|
|
<img src="{{ asset('storage/' . $berita->gambar) }}"
|
|
alt="{{ $berita->judul }}"
|
|
class="w-full h-full object-cover">
|
|
</div>
|
|
@else
|
|
<div class="h-48 bg-gray-200 flex items-center justify-center">
|
|
<i class="fas fa-image text-gray-400 text-4xl"></i>
|
|
</div>
|
|
@endif
|
|
|
|
<!-- Content Section -->
|
|
<div class="p-6">
|
|
<!-- Status Badge -->
|
|
<div class="mb-3">
|
|
@if($berita->status === 'published')
|
|
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-green-100 text-green-800">
|
|
<i class="fas fa-check-circle mr-1"></i>
|
|
Published
|
|
</span>
|
|
@else
|
|
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-yellow-100 text-yellow-800">
|
|
<i class="fas fa-edit mr-1"></i>
|
|
Draft
|
|
</span>
|
|
@endif
|
|
</div>
|
|
|
|
<!-- Category Badge -->
|
|
<div class="mb-3">
|
|
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-blue-100 text-blue-800">
|
|
{{ $berita->kategori }}
|
|
</span>
|
|
</div>
|
|
|
|
<!-- Title -->
|
|
<h3 class="text-lg font-semibold text-gray-800 mb-2 line-clamp-2">
|
|
{{ $berita->judul }}
|
|
</h3>
|
|
|
|
<!-- Summary -->
|
|
<p class="text-gray-600 text-sm mb-4 line-clamp-3">
|
|
{{ $berita->ringkasan }}
|
|
</p>
|
|
|
|
<!-- Author and Date -->
|
|
<div class="flex items-center justify-between text-xs text-gray-500 mb-4">
|
|
<span>
|
|
<i class="fas fa-user mr-1"></i>
|
|
{{ $berita->penulis }}
|
|
</span>
|
|
<span>
|
|
<i class="fas fa-calendar mr-1"></i>
|
|
{{ $berita->created_at->format('d M Y') }}
|
|
</span>
|
|
</div>
|
|
|
|
<!-- Action Buttons -->
|
|
<div class="flex items-center justify-between pt-4 border-t border-gray-100">
|
|
<div class="flex space-x-2">
|
|
<a href="{{ route('beritas.show', $berita) }}"
|
|
class="inline-flex items-center px-3 py-1.5 text-xs font-medium text-blue-600 bg-blue-50 rounded-lg hover:bg-blue-100 transition-colors">
|
|
<i class="fas fa-eye mr-1"></i>
|
|
Lihat
|
|
</a>
|
|
<a href="{{ route('beritas.edit', $berita) }}"
|
|
class="inline-flex items-center px-3 py-1.5 text-xs font-medium text-yellow-600 bg-yellow-50 rounded-lg hover:bg-yellow-100 transition-colors">
|
|
<i class="fas fa-edit mr-1"></i>
|
|
Edit
|
|
</a>
|
|
</div>
|
|
|
|
<form action="{{ route('beritas.destroy', $berita) }}" method="POST" class="inline"
|
|
onsubmit="return confirm('Apakah Anda yakin ingin menghapus berita ini?')">
|
|
@csrf
|
|
@method('DELETE')
|
|
<button type="submit"
|
|
class="inline-flex items-center px-3 py-1.5 text-xs font-medium text-red-600 bg-red-50 rounded-lg hover:bg-red-100 transition-colors">
|
|
<i class="fas fa-trash mr-1"></i>
|
|
Hapus
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@empty
|
|
<div class="col-span-full">
|
|
<div class="text-center py-12">
|
|
<i class="fas fa-newspaper text-gray-400 text-6xl mb-4"></i>
|
|
<h3 class="text-lg font-medium text-gray-900 mb-2">Belum ada berita</h3>
|
|
<p class="text-gray-500 mb-6">Mulai dengan menambahkan berita pertama Anda.</p>
|
|
<a href="{{ route('beritas.create') }}"
|
|
class="inline-flex items-center px-4 py-2 bg-red-600 text-white text-sm font-medium rounded-lg hover:bg-red-700 transition-colors">
|
|
<i class="fas fa-plus mr-2"></i>
|
|
Tambah Berita Pertama
|
|
</a>
|
|
</div>
|
|
</div>
|
|
@endforelse
|
|
</div>
|
|
|
|
<!-- Pagination -->
|
|
@if($beritas->hasPages())
|
|
<div class="mt-8">
|
|
{{ $beritas->links() }}
|
|
</div>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
|
|
<style>
|
|
.line-clamp-2 {
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
}
|
|
.line-clamp-3 {
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 3;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
}
|
|
</style>
|
|
</x-app-layout>
|