Fee: ৳{{ intval($match->Entry_Fee) }}
Kill: ৳{{ intval($match->Per_Kill) }}
Prize: ৳{{ intval($match->Total_Prize) }}
Rules & Regulations
@if(!empty($rulesArray))
@foreach($rulesArray as $index => $rule)
{{ $index + 1 }}
{{ $rule }}
@endforeach
@else
1
Standard tournament rules apply for this match.
@endif
Join Match
@php
$entryType = strtolower($match->Entry_Type ?? 'solo');
@endphp
@if(in_array($entryType, ['duo', 'squad']))
@if($entryType === 'squad')
@endif
@endif
Player Details
Registered Participants
@php $hasPlayers = false; @endphp
@if(isset($joinedPlayers) && $joinedPlayers->count() > 0)
@foreach($joinedPlayers as $index => $joinedData)
@php $hasPlayers = true; @endphp
#{{ $index + 1 }}
{{ $joinedData->ingame_name }}
@endforeach
@endif
@if(!$hasPlayers)
No players joined yet. Be the first!
@endif