Correction des différents bugs

This commit is contained in:
2024-11-27 16:30:59 +01:00
parent 780798ff25
commit cda2104b11
25 changed files with 1096 additions and 334 deletions

View File

@@ -18,10 +18,10 @@ class HomeController extends Controller
public function history()
{
$contests = Contest::where('participated', true)->orderby('updated_at', 'desc')->paginate(20);
$contests = Contest::where('participated',true)->orderby('updated_at','desc')->paginate(20);
SEOTools::setTitle('Mon historique');
return view('history', compact('contests'));
}
}
}