@extends('layouts.app') @section('content') JKR Hulu Langat Pengurusan Kategori Surat {{-- Success & Error Messages --}} @if(session('Berjaya')) {{ session('Berjaya') }} @endif @if ($errors->any()) @foreach ($errors->all() as $error) {{ $error }} @endforeach @endif {{-- Form + Table --}} {{-- Form --}} {{ isset($kategoriSurat) ? 'Kemaskini Kategori' : 'Tambah Kategori' }} @csrf @if(isset($kategoriSurat)) @method('PUT') @endif Kategori {{ isset($kategoriSurat) ? 'Kemaskini' : 'Hantar' }} @if(isset($kategoriSurat)) Batal @endif {{-- Table --}} Senarai Kategori No. Kategori Tindakan @php $counter = 1 @endphp @foreach ($katSurat as $item) {{ $counter++ }} {{ $item->kategori }} @csrf @method('DELETE') @endforeach {{-- End Row --}} @endsection