@props(['golfer', 'viewMode' => 'grid']) @if($viewMode === 'grid')
@if($golfer->getFirstMedia('photos')) {{ $golfer->user->name }} @else
@endif
@if($golfer->willing_to_travel)
Will Travel
@endif

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

{{ $golfer->home_location }}

${{ number_format($golfer->hourly_rate, 0) }}

per hour

{{ $golfer->bio }}

@if($golfer->tags->count() > 0)
@foreach($golfer->tags->take(3) as $tag) {{ $tag->name }} @endforeach @if($golfer->tags->count() > 3) +{{ $golfer->tags->count() - 3 }} @endif
@endif View Full Profile
@else
@if($golfer->getFirstMedia('photos')) {{ $golfer->user->name }} @else
@endif
@if($golfer->willing_to_travel)
Will Travel
@endif

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

{{ $golfer->home_location }}

${{ number_format($golfer->hourly_rate, 0) }}

per hour

{{ $golfer->bio }}

@if($golfer->tags->count() > 0)
@foreach($golfer->tags->take(5) as $tag) {{ $tag->name }} @endforeach @if($golfer->tags->count() > 5) +{{ $golfer->tags->count() - 5 }} @endif
@endif View Full Profile
@endif