PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
plugins
/
ecommerce
/
src
/
Http
/
Middleware
<?php namespace Botble\Ecommerce\Http\Middleware; use Closure; use Illuminate\Http\Request; use Illuminate\Support\Facades\Auth; class RedirectIfNotCustomer { /** * Handle an incoming request. * * @param Request $request * @param Closure $next * @param string|null $guard * @return mixed */ public function handle($request, Closure $next, $guard = 'customer') { if (!Auth::guard($guard)->check()) { if ($request->ajax() || $request->wantsJson()) { return response('Unauthorized.', 401); } return redirect()->guest(route('customer.login')); } return $next($request); } }
[+]
..
[-] RedirectIfNotCustomer.php
[edit]
[-] RedirectIfCustomer.php
[edit]