Registered Players Info:
{{ $message = ''}} @if(count($playerDetails) != 0) @php $i = 0 @endphp
{{ 'Sno' }}
{{ 'Username' }}
{{ 'Email' }}
{{ 'Phone Number' }}
@php $sno = 1 @endphp @foreach ($playerDetails as $Index => $row)
{{ $sno }}
{{ $row->PLAYER_NAME }}
{{ $row->EMAIL_ID }}
{{ $row->CONTACT }}
@php $sno++ @endphp @php $i++ @endphp @endforeach
@else {{ $message = 'There is no records to display' }} @endif