55 lines
2.5 KiB
PHP
55 lines
2.5 KiB
PHP
<x-app-layout>
|
|
@section('page-title', $pageTitle)
|
|
|
|
<div class="card shadow-sm border-0">
|
|
<div class="card-header bg-white d-flex justify-content-between align-items-center">
|
|
<h5 class="my-0 fw-bold">Kelola Pengumuman</h5>
|
|
<a href="{{ route('admin.pengumuman.create') }}" class="btn btn-primary">
|
|
<i class="bi bi-plus-circle-fill me-2"></i>Buat Pengumuman
|
|
</a>
|
|
</div>
|
|
<div class="card-body">
|
|
<div class="table-responsive">
|
|
<table class="table table-hover align-middle">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">No</th>
|
|
<th scope="col">Tipe</th>
|
|
<th scope="col">Judul</th>
|
|
<th scope="col">Isi</th>
|
|
<th scope="col">Aksi</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@forelse ($semuaPengumuman as $item)
|
|
<tr>
|
|
<td>{{ $loop->iteration }}</td>
|
|
<td>
|
|
<span class="badge bg-{{ $item['type'] }}-subtle text-{{ $item['type'] }}-emphasis">{{ Str::title($item['type']) }}</span>
|
|
</td>
|
|
<td>{{ $item['title'] }}</td>
|
|
<td class="truncate-text" style="max-width: 300px;">
|
|
{{ $item['content'] }}
|
|
</td>
|
|
<td>
|
|
<a href="{{ route('admin.pengumuman.edit', $item['id']) }}" class="btn btn-sm btn-outline-secondary">
|
|
<i class="bi bi-pencil-fill"></i>
|
|
</a>
|
|
<button class="btn btn-sm btn-outline-danger" disabled>
|
|
<i class="bi bi-trash3-fill"></i>
|
|
</button>
|
|
</td>
|
|
</tr>
|
|
@empty
|
|
<tr>
|
|
<td colspan="5" class="text-center py-4">
|
|
<p class="text-muted">Belum ada pengumuman yang dibuat.</p>
|
|
</td>
|
|
</tr>
|
|
@endforelse
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</x-app-layout> |