@extends('new_app.header') @section('content')

{{ $game->game_name }}

Games Result
@php // Set the current year dynamically $_current_year = now()->year; // Generate months from January to December $months = collect(range(1, 12))->map(fn($x) => now()->startOfYear()->addMonths($x - 1)->format('M')); $yearMonths = collect(range(1, 12))->map(fn($x) => now()->startOfYear()->addMonths($x - 1)->format('Ym')); @endphp @foreach ($months as $month) @endforeach @for ($x = 1; $x <= 31; $x++) @php $d = str_pad($x, 2, '0', STR_PAD_LEFT); @endphp @foreach ($yearMonths as $ym) @endforeach @endfor
Date{{ $month }}
{{ $x }}
@endsection