@extends('admin.layouts.admin') @section('title') Admin | Show Charitable Organization @endsection @section('styles') @endsection @section('content')

Show Charitable Organization Details

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

@if($recordDetails['is_active'] == 1) ACTIVE @else INACTIVE @endif

{{ $recordDetails['is_school']?'School':'Other Charitable Organization' }}

{{ $recordDetails['organization_ID']??'Not found' }}

{{ $recordDetails->name??'Not found' }}

{{ $recordDetails->address??'Not found' }}

{{ $recordDetails->city??'Not found' }}

{{ $recordDetails->state??'Not found' }}

{{ $recordDetails->email??'Not found' }}

{{ $recordDetails->phone??'Not found' }}

{{ $recordDetails->zip_code??'Not found' }}

@endsection @section('scripts') @endsection