IT Admin

System rules, closing cost fees, user management, and API configuration

Active Rules

{{ $activeRules }}

System rules active

Active Fees

{{ $activeFees }}

Closing cost fees

Users

{{ $userCount }}

Active system users

API Uptime

99.8%

Last 30 days

@foreach (['rules' => 'System Rules', 'fees' => 'Closing Cost Fees', 'users' => 'User Management', 'api' => 'API Configuration'] as $key => $label) {{ $label }} @endforeach
@if ($tab === 'rules')

System Rules Configuration

Manage product rules, compliance thresholds, approval limits, and validation parameters

⚠️ Changes to system rules affect all new transactions. Existing transactions follow rules at time of creation.
@foreach ($rules as $rule) @endforeach
Category Rule Name Value Status Last Updated
{{ $rule->category }}

{{ $rule->rule_name }}

@if ($rule->description)

{{ $rule->description }}

@endif
@csrf
{{ ucfirst($rule->status) }} {{ $rule->updated_at->format('n/j/Y') }}
@csrf
@elseif ($tab === 'fees')

Closing Cost Fees

@foreach ($fees as $fee) @endforeach
Fee Name Type Value Product Status
{{ $fee->fee_name }} {{ $fee->fee_type }} {{ $fee->fee_type === 'percentage' ? rtrim(rtrim($fee->value, '0'),'.').'%' : '₦'.number_format($fee->value) }} {{ $fee->mortgageProduct?->code ?? 'All Products' }} {{ ucfirst($fee->status) }}
@csrf
@elseif ($tab === 'users')

User Management

@foreach ($users as $u) @endforeach
Name Role Branch Status Last Login

{{ $u->name }}

{{ $u->email }}

{{ $u->roleLabel() }} {{ $u->branch ?? '—' }} {{ ucfirst($u->status) }} {{ $u->last_login_at?->format('M j, Y') ?? 'Never' }}
@csrf
{{ $users->links() }}
@else

API Configuration

Third-party integrations per PRD Section 23

@foreach (['Credit Bureau (CRC/FirstCentral)' => 'Not configured', 'Core Banking' => 'Not configured', 'SMS Gateway' => 'Not configured', 'Email Server (SMTP)' => 'Configured', 'Government Land Registry' => 'Not configured', 'Electronic Signature' => 'Not configured'] as $integration => $status)
{{ $integration }} {{ $status }}
@endforeach
@endif