Laravel récupérant des agrégats
$count = Flight::where('active', 1)->count();
$max = Flight::where('active', 1)->max('price');
Cooperative Crab
$count = Flight::where('active', 1)->count();
$max = Flight::where('active', 1)->max('price');