@extends('backend.layouts.app') @section('content')
| # | Representative Name | Organization Name | Registration Number | Organization Type | Mobile | Status | Registration Date | |
|---|---|---|---|---|---|---|---|---|
| {{ $organizers->firstItem() + $key }} | {{ $org->full_name }} | {{ $org->organization_name }} | {{ $org->registration_number }} | {{ $org->organization_type }} | {{ $org->mobile }} | {{ $org->email }} | @php $statusClass = match($org->status) { 'accept' => 'badge bg-success', 'reject' => 'badge bg-danger', 'pending' => 'badge bg-warning text-dark', default => 'badge bg-secondary', }; @endphp {{ ucfirst($org->status ?? 'pending') }} | {{ $org->created_at->format('Y-m-d') }} |
| No organizations found. | ||||||||