PATH:
home
/
lab2454c
/
sothebry.softkinesis.com
/
backups
/
backup
/
core
/
app
/
Http
/
Middleware
<?php namespace App\Http\Middleware; use Closure; class Demo { /** * Handle an incoming request. * * @param \Illuminate\Http\Request $request * @param \Closure $next * @return mixed */ public function handle($request, Closure $next) { if ($request->isMethod('POST') || $request->isMethod('PUT') || $request->isMethod('DELETE')){ $notify[] = ['warning', 'You can not change anything over this demo.']; $notify[] = ['info', 'This version is for demonstration purposes only and few actions are blocked.']; 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]