@php $players = \App\Models\Player::query()->orderByDesc('created_at')->take(5)->get(); @endphp @if($players->count() > 0)
{{--
--}} {{--
Last 5 Registrations
--}} {{-- --}} {{--
--}}
Last 5 Registrations
View All
@foreach($players as $player) {{--

{{ $player->full_name }} registered

{{ $player->created_at }}

--}} @endforeach
Full name User Id Aff. ID Status Country
{{ $player->full_name }} {{ $player->id }} {{ $player->status }}
@endif