LIKELY FIELDS The Saudi Cup
@foreach ($races as $race)
@php echo \Carbon\Carbon::parse($race['date']) ->locale('en') ->translatedFormat('l jS \\of F Y'); @endphp
{{ $race['raceName'] }} USD {{ number_format($race['prize']) }} {{ $race['distance'] }}m {{ $race['surface_type'] }} {{ $race['category'] }}
@php $counter = 1; @endphp @foreach ($race['horses'] as $index => $entry) @if($entry['status'] =='Excluded') @elseif ($entry['status'] == 'Waiting Final Qualification') @else @php $counter++; @endphp @endif @if(!$entry['paid']) @else @endif @endforeach
Horse Trainer Country Weight (Kg)
{{ $entry['en_horse_name'] }} ({{ $entry['birth_place'] }}) R     {{ $entry['en_horse_name'] }} ({{ $entry['birth_place'] }}) {{ $counter }}     {{ $entry['en_horse_name'] }} ({{ $entry['birth_place'] }}) {{ $entry['trainer_first_name'] }} {{ $entry['trainer_last_name'] }} {{ $entry['trained']->en_name }} {{ $entry['weight'] }} Supp
@endforeach