سلام تویی این مسیر
class CheckForMaintenanceMode extends \Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode
و به جایی نوشتن این میتونی یک ویو و ... رو اجرا کنی
public function handle($request, Closure $next)
{
if ($this->app->isDownForMaintenance() &&
!in_array($request->getClientIP(), ['127.0.0.1']))
{
return response('Be right back!', 503);
}
return $next($request);
}```
توی این مسیری که گفتید این سورس هست که با سورس فوق تون فرق داره
public function handle($request, Closure $next) ```
{
if ($this->app->isDownForMaintenance()) {
$data = json_decode(file_get_contents($this->app->storagePath().'/framework/down'), true);
throw new MaintenanceModeException($data['time'], $data['retry'], $data['message']);
}
return $next($request);
}
}```
آیا مایل به ارسال نوتیفیکیشن و اخبار از طرف راکت هستید ؟