@extends('layouts.app') @section('content')
@if(session('success'))
{{ session('success') }}
@endif {{-- table index start --}}
Senarai Surat Permohonan
{{-- Search Form --}} {{-- Table --}}
@php $counter = 1 @endphp @foreach ($model as $item) @endforeach
No. Tajuk Tarikh Permohonan Surat Permohonan Status Tindakan
{{ $counter++ }} {{ $item->tajuk }} {{ $item->tarikh_permohonan }} @if($item->attachment) Lihat Lampiran @else Tiada Lampiran @endif {{ config('optionHandler.status.' . $item->status, 'TIADA TINDAKAN') }}
@csrf @method('DELETE')
{{-- table index end --}}
@endsection