@extends('layout.app') @section('css') @endsection @section('content') @php use App\Models\Client; @endphp

Client List

@foreach ($activeClients as $clientId) @endforeach
Active Client Id Current Status
{{ $clientId }} @if (isset($currentClients[$clientId])) {{ $currentClients[$clientId] ?? 'N/A' }} @else @php $checkClose = Client::onlyTrashed()->where('id', $clientId)->first(); @endphp @if ($checkClose) Closed @else Deleted @endif @endif
@endsection @section('js') @endsection @push('script') @endpush