{{-- search box section --}}
{{-- header --}}
@if (auth()->user()->is_developer) {!! __('app.people_search', ['scope' => strtoupper(e(__('team.all_teams')))]) !!} @else {!! __('app.people_search', ['scope' => e(auth()->user()->currentTeam->name)]) !!} @endif
@if (auth()->user()->hasPermission('person:create')) {{-- add button --}}
@endif
@if ($search) {!! __('app.people_found', [ 'found' => $people->total(), 'total' => $people_db, 'scope' => auth()->user()->is_developer ? strtoupper(e(__('team.all_teams'))) : e(auth()->user()->currentTeam->name), 'keyword' => e($search), ]) !!} @else {!! __('app.people_available', [ 'total' => $people_db, 'scope' => auth()->user()->is_developer ? strtoupper(e(__('team.all_teams'))) : e(auth()->user()->currentTeam->name), ]) !!} @endif
{{-- search box --}}
{{-- loading spinner --}} {{--
--}}
{{-- footer : perpage and pagination --}}
{{ $people->links('components/pagination/tailwind') }}
@if (count($people) > 0) {{-- people grid --}}
@foreach ($people as $person) @endforeach
@else {{-- carousel --}}
@endif {{-- search help modal --}} {{ __('app.help') }}

{!! __('app.people_search_help_1') !!}


{!! __('app.people_search_help_2') !!}


{!! __('app.people_search_help_3') !!}