@extends('backend.layouts.app') @section('content')
{{ $organization->organization_type }}
| Registration Number | {{ $organization->registration_number ?? '-' }} |
|---|---|
| Established Date | {{ \Carbon\Carbon::parse($organization->est_date)->format('d M, Y') }} |
| {{ $organization->email }} | |
| Mobile | {{ $organization->mobile }} |
| Website | @if ($organization->website) {{ $organization->website }} @else - @endif |
| Address | {{ $organization->address }} |
| Representative | {{ $organization->full_name }} |
| Status | {{ $organization->is_approved ? 'Approved' : 'Pending' }} |