{{ __('Search Golfers') }}

@if(request()->hasAny(['search', 'location', 'min_price', 'max_price', 'tags', 'date', 'willing_to_travel', 'min_rating']))

Active Filters

Clear all
@if(request('search')) Search: {{ request('search') }} @endif @if(request('location')) Location: {{ request('location') }} ({{ request('radius', 25) }}mi) @endif @if(request('min_price') || request('max_price')) Price: ${{ request('min_price', 0) }} - ${{ request('max_price', '∞') }} @endif @if(request('tags')) @foreach($allTags->whereIn('id', request('tags', [])) as $tag) {{ $tag->name }} @endforeach @endif @if(request('date')) Available: {{ date('M d, Y', strtotime(request('date'))) }} @endif @if(request('willing_to_travel')) Willing to travel @endif @if(request('min_rating')) {{ request('min_rating') }}+ Stars @endif
@endif
@if($golfers->total() > 0) Showing {{ $golfers->firstItem() }} to {{ $golfers->lastItem() }} of {{ $golfers->total() }} results @else No results found @endif
@foreach(request()->except(['sort', 'page']) as $key => $value) @if(is_array($value)) @foreach($value as $v) @endforeach @else @endif @endforeach
@if($golfers->count() > 0)
@foreach($golfers as $golfer)
@if($golfer->hasMedia('photos')) {{ $golfer->user->name }} @else
{{ substr($golfer->user->name, 0, 1) }}
@endif @if($golfer->is_featured) Featured @endif

{{ $golfer->user->name }}

{{ $golfer->home_location }}

{{ Str::limit($golfer->bio, 100) }}

@if($golfer->tags->count() > 0)
@foreach($golfer->tags->take(3) as $tag) {{ $tag->name }} @endforeach @if($golfer->tags->count() > 3) +{{ $golfer->tags->count() - 3 }} more @endif
@endif
${{ number_format($golfer->hourly_rate, 0) }} /hour View Profile
@endforeach
{{ $golfers->links() }}
@else

No golfers found

Try adjusting your search filters.

@endif