{{ __('Search Golfers') }}

Clear
@if($golfers->count() > 0)

Showing {{ $golfers->firstItem() }} to {{ $golfers->lastItem() }} of {{ $golfers->total() }} results

@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