@include('partials.css-links')
@include('partials.header')

Tournament Results

Silambam Tournament Results

@if($profile->count())
@foreach($profile as $item) @endforeach
ID PROFILEIMAGE FIRSTNAME LASTNAME EMAIL AGE DATEOFBIRTH GENDER MASTERNAME ACADEMY CITY & STATE NATIONALITY SOUTH NATIONAL ASIAN WORLD RANK TOTAL ACTION
{{ $item->id }} @if($item->profile) Profile Image @else No Image @endif {{ $item->firstname }} {{ $item->lastname }} {{ $item->email }} {{ $item->age }} {{ $item->dob }} {{ $item->gender }} {{ $item->mastername }} {{ $item->academy }} {{ $item->city }} {{ $item->nationality }} {{ $item->ranking->south ?? '-' }} {{ $item->ranking->national ?? '-' }} {{ $item->ranking->asian ?? '-' }} {{ $item->ranking->world ?? '-' }} {{ $loop->iteration }} {{ $item->ranking->total ?? '-' }}
{{-- --}}
@else

No profiles found.

@endif
@include('partials.footer') @include('partials.js-links')