@extends('layouts.admin') @section('content')
@if (session('success')) @endif
Current Week
{{ number_format($currentWeekCount) }}
Current Month
{{ number_format($currentMonthCount) }}
Last 3 Months
{{ number_format($last3MonthsCount) }}
Current Year
{{ number_format($currentYearCount) }}
Total Drafts
{{ number_format($totalCount) }}
@foreach ($teams as $key => $team) @endforeach
Sr. No. Type Blue Team Red Team Date Blue Link Red Link Action
{{ ++$key }} {{ $team->type == 'HardFearless' ? 'Hard Fearless' : $team->type }} {{ $team->blue_name }} {{ $team->red_name }} {{ date('M d, Y', strtotime($team->created_at)) }} @php $blueLink = route('game-players', [$team->room_id, $team->blue_team]); $redLink = route('game-players', [$team->room_id, $team->red_team]); @endphp
@endsection @push('script') @endpush