TIF_NGANJUK_E41220778/resources/views/admin/pengumuman/index.blade.php

43 lines
2.0 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>
<button class="btn btn-primary"><i class="bi bi-plus-circle-fill me-2"></i>Buat Pengumuman</button>
</div>
<div class="card-body">
<div class="table-responsive">
<table class="table table-hover">
<thead>
<tr>
<th>No</th>
<th>Tipe</th>
<th>Judul</th>
<th>Isi</th>
<th>Aksi</th>
</tr>
</thead>
<tbody>
@foreach ($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>
<button class="btn btn-sm btn-outline-secondary"><i
class="bi bi-pencil-fill"></i></button>
<button class="btn btn-sm btn-outline-danger"><i
class="bi bi-trash3-fill"></i></button>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
</x-app-layout>