{{ $match->description ?: 'Match details and results.' }}
| Pos | Angler | Peg | Weight | Points | Biggest Fish |
|---|---|---|---|---|---|
| {{ $entrant->position ?: '-' }} |
{{ $entrant->angler_name }}
@if($entrant->notes)
{{ $entrant->notes }}
@endif
|
{{ $entrant->peg_number ?: '-' }} | @if(!is_null($entrant->weight_lbs) || !is_null($entrant->weight_oz)) {{ (int) $entrant->weight_lbs }}lb {{ (int) $entrant->weight_oz }}oz @else - @endif | {{ !is_null($entrant->points) ? rtrim(rtrim(number_format((float) $entrant->points, 2, '.', ''), '0'), '.') : '-' }} | @if($entrant->biggest_fish_species) {{ $entrant->biggest_fish_species }} @if(!is_null($entrant->biggest_fish_lbs) || !is_null($entrant->biggest_fish_oz)) ({{ (int) $entrant->biggest_fish_lbs }}lb {{ (int) $entrant->biggest_fish_oz }}oz) @endif @else - @endif |