@extends('admin.layouts.app') @section('title', 'Second Appraisal List') @section('content')
{{-- Card Header --}}
{{-- Title --}}
Appraisal List
{{-- Actions: Search, Generate, Add New --}}
{{-- Search Box (Max width reduced to 200px) --}}
{{-- Button: Generate Second Appraisal (btn-sm) --}} Generate {{-- Button: Add New (btn-sm) --}} Add New
{{-- Success Message --}} @if (session('success')) @endif
                                @forelse($appraisals as $appr) @empty @endforelse
ID Gold Loan A/C Ledger Folio Appraisal Date Bank / Branch Actions
#{{ $appr->id }}
{{ $appr->gold_loan_account_no }}
{{ $appr->ledger_folio_no }} {{ \Carbon\Carbon::parse($appr->second_appraisal_date)->format('d M, Y') }}
{{ $appr->bank->bank ?? '-' }} {{ $appr->branch->branch_address ?? '-' }}
{{-- Action Buttons: Already btn-sm, which is the smallest standard size --}}

No appraisal records found.

{{-- Pagination --}}
{{-- End Card Body --}}
{{-- End Card --}}
@endsection @push('styles') @endpush @push('scripts') @endpush