لو نظرنا للملف bootstrap/app.php في الجزء الخاص بالـ route نرى شيئ خاص بـ health
return Application::configure(basePath: dirname(__DIR__)) ->withRouting( web: __DIR__.'/../routes/web.php', commands: __DIR__.'/../routes/console.php', health: '/up', ) ->withMiddleware(function (Middleware $middleware) { }) ->withExceptions(function (Exceptions $exceptions) { // })->create();
الـ helth عبارة عن route فلو قمنا بزيارة الرابط ethar.test/up ستظهر لنا هذه الصفحة
حيث يعمل check للتطبيق الخاص بك، هل به اي مشاكل أم لا، قبل ذلك في الإصدارات السابقه كنا بحاجة لتثبيت حزمة (Laravel health)، مع العلم أن الحزمه بها تفاصيل أكثر.