@extends('layouts.app') @section('title', 'CBO Management') @section('content')

CBO Management

Create New CBO
@forelse($cbos as $cbo) @empty @endforelse
CBO Code CBO Name Branch Credit Officer Formation Date Status Actions
{{ $cbo->cbo_code }} {{ $cbo->cbo_name }} {{ $cbo->branch->branch_name ?? 'N/A' }} {{ $cbo->creditOfficer->name ?? 'N/A' }} {{ $cbo->formation_date ? $cbo->formation_date->format('M d, Y') : 'N/A' }} {{ ucfirst($cbo->status) }}
@csrf @method('PATCH')

No CBOs found.

Create the first CBO
@endsection