TIF_E41211496/resources/views/berita/index.blade.php

96 lines
4.9 KiB
PHP

@extends('layouts.app')
@section('title', 'Berita')
@section('content')
<div class="bg-white p-2 mb-4 border-2 border-white rounded-lg">
<div class="flex justify-center items-center rounded-lg border-gray-300 h-4">
<h2 class="flex items-center justify-center text-sm text-center lg:text-lg font-bold uppercase text-red-600">
Daftar Berita
</h2>
</div>
</div>
<div class="mt-4">
<form method="GET" action="{{ route('berita.index') }}">
<div class="flex justify-between items-center mx-28">
<a href="{{ route('berita.create') }}" class="bg-red-500 text-white p-2 rounded-lg hover:bg-red-600">
Tambah Berita
</a>
<div class="flex items-center">
<input type="text" name="search" class="w-full p-2 border border-gray-300 rounded-lg mx-4"
placeholder="Cari Berita..." value="{{ request('search') }}">
<button type="submit" class="bg-red-500 text-white p-2 rounded-lg hover:bg-red-600">
Cari
</button>
</div>
</div>
</form>
</div>
<section class="bg-white py-4 rounded-lg mb-4 antialiased md:py-8">
<div class="mx-auto max-w-screen-xl px-4 2xl:px-0">
<div class="mx-auto max-w-5xl">
@if ($berita->count() > 0)
<table class="min-w-full divide-y divide-gray-200">
<thead class="bg-red-600">
<tr>
<th class="px-6 py-3 text-left text-xs font-medium text-white uppercase tracking-wider">
No
</th>
<th class="px-6 py-3 text-left text-xs font-medium text-white uppercase tracking-wider">
Judul
</th>
<th class="px-6 py-3 text-left text-xs font-medium text-white uppercase tracking-wider">
Kategori
</th>
<th class="px-6 py-3 text-left text-xs font-medium text-white uppercase tracking-wider">
Gambar
</th>
<th class="px-6 py-3 text-center text-xs font-medium text-white uppercase tracking-wider">
Aksi
</th>
</tr>
</thead>
<tbody class="bg-white">
@foreach ($berita as $item)
<tr class="border-b border-gray-200">
<td class="px-6 py-4 text-gray-900">
{{ $loop->iteration }}
</td>
<td class="px-6 py-4 text-gray-900">
{{ $item->judul }}
</td>
<td class="px-6 py-4 text-gray-900">
{{ $item->kategori }}
</td>
<td class="px-6 py-4 text-gray-900">
<img src="{{ asset('storage/' . $item->gambar) }}" alt="{{ $item->judul }}" class="h-16 w-16 object-cover rounded-lg">
</td>
<td class="px-6 py-4 text-center">
<div class="flex justify-center items-center gap-2">
<form action="{{ route('berita.destroy', $item->id) }}" method="POST" onsubmit="return confirm('Yakin ingin menghapus berita ini?')">
@csrf
@method('DELETE')
<button type="submit" class="rounded-lg border border-red-700 px-3 py-2 text-sm font-medium text-red-700 hover:bg-red-700 hover:text-white focus:outline-none focus:ring-4 focus:ring-red-300">
Hapus
</button>
</form>
<a href="{{ route('berita.edit', $item->id) }}" class="rounded-lg border border-blue-700 px-3 py-2 text-sm font-medium text-blue-700 hover:bg-blue-700 hover:text-white focus:outline-none focus:ring-4 focus:ring-blue-300">
Edit
</a>
</div>
</td>
</tr>
@endforeach
</tbody>
</table>
@else
<div class="text-center">
<h1 class="text-red-600 font-bold">Belum ada berita yang tersedia</h1>
</div>
@endif
</div>
</div>
</section>
@endsection