PATH:
home
/
lab2454c
/
.trash
/
core
/
app
/
Http
/
Middleware
<?php namespace App\Http\Middleware; use App\Models\GeneralSetting; use Closure; class AllowRegistration { /** * Handle an incoming request. * * @param \Illuminate\Http\Request $request * @param \Closure $next * @return mixed */ public function handle($request, Closure $next) { if (GeneralSetting::first()->registration == 0) { $notify[] = ['error', 'Registration is currently disabled.']; return back()->withNotify($notify); } return $next($request); } }
[-] TrustProxies.php
[edit]
[-] CheckForMaintenanceMode.php
[edit]
[-] TrimStrings.php
[edit]
[+]
..
[-] RedirectIfAdmin.php
[edit]
[-] RedirectIfAuthenticated.php
[edit]
[-] RedirectIfNotAdmin.php
[edit]
[-] LanguageMiddleware.php
[edit]
[-] Authenticate.php
[edit]
[-] AuthenticateApi.php
[edit]
[-] EncryptCookies.php
[edit]
[-] PreventRequestsDuringMaintenance.php
[edit]
[-] CheckStatusApi.php
[edit]
[-] AllowRegistration.php
[edit]
[-] CheckStatus.php
[edit]
[-] Demo.php
[edit]
[-] VerifyCsrfToken.php
[edit]
[-] TrustHosts.php
[edit]