@extends('layouts.app') @section('title') {{$title}} -@endsection @section('content')

{{$title}}

{{trans('users.the_best_creators_is_here')}} @guest @if ($settings->registration_active == '1') {{ trans('general.join_now') }} @endif @endguest

@if (! request()->get('q'))
{{trans('general.filter_by')}}
@endif
Go Live
@if( $users->total() != 0 ) @foreach($users as $response)
{{$response->name}}

{{$response->hide_name == 'yes' ? $response->username : $response->name}}

@endforeach @endif
@include('includes.listing-categories')
@if( $users->total() != 0 ) @foreach($users as $response)
@include('includes.listing-creators')
@endforeach @if($users->hasPages())
{{ $users->appends(['q' => request('q')])->links() }}
@endif @else

{{trans('general.no_results_found')}}

@endif
@endsection