@php $cm = config('hotel_dashboard.channel_manager'); $otas = config('otas', []); $statusKey = $cmStatus['status'] ?? 'platform_pending'; $badgeClass = match ($statusKey) { 'active' => 'badge-success', 'pending' => 'badge-warning', default => 'badge-secondary', }; @endphp

{{ $cm['title'] }}

{{ $cmStatus['label'] ?? 'Pending' }}

{{ $cm['intro'] }}

{{ $cm['status'][$statusKey] ?? '' }}

@foreach($cm['quick_links'] as $link) @if(Route::has($link['route'])) @endif @endforeach
Get started in 3 steps
@foreach($cm['steps'] as $index => $step)
{{ $index + 1 }}
{{ $step['title'] }}

{{ $step['body'] }}

@if(!empty($step['route']) && Route::has($step['route'])) {{ $step['label'] }} @endif
@endforeach
Your connected channels
@foreach($otas as $ota)
{{ $ota['name'] }} {{ $ota['name'] }}
@endforeach