@extends('layouts.app') @section('content')
{{-- 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
@if(isset($kategoriSurat)) Batal @endif
{{-- Table --}}
Senarai Kategori
@php $counter = 1 @endphp @foreach ($katSurat as $item) @endforeach
No. Kategori Tindakan
{{ $counter++ }} {{ $item->kategori }}
@csrf @method('DELETE')
{{-- End Row --}}
@endsection