@extends('layouts.app') @section('title', __('Clients')) @section('page-title', __('Clients')) @section('page-subtitle', __('Company files for every business you analyse.')) @php $f = $filters ?? []; $hasFilters = collect($f)->reject(fn ($v) => $v === '' || $v === null)->isNotEmpty(); @endphp @section('content')
{{-- ── Header strip ────────────────────────────────────────────────── --}}
@if(session('status'))
{{ session('status') }}
@endif @if(session('error'))
{{ session('error') }}
@endif {{-- ── Search + advanced filters ───────────────────────────────────── --}}
@if($archived)@endif
@if($hasFilters) @endif
{{-- ── Client list ─────────────────────────────────────────────────── --}} @if($clients->isEmpty())
{{ $archived ? __('Nothing archived yet.') : __('No company files yet.') }}
@if(! $archived)
{{ __('Create your first company file to start tracking analyses chronologically.') }}
{{ __('New company file') }} @endif
@else
{{ $clients->links() }}
@endif
@endsection