File manager - Edit - /home/linknsbh/linkat.online/app/Http/Middleware/CheckWebsiteOwner.php
Back
<?php namespace App\Http\Middleware; use Closure; use Illuminate\Support\Facades\Auth; use App\Http\Helpers\UserPermissionHelper; class CheckWebsiteOwner { /** * Handle an incoming request. * * @param \Illuminate\Http\Request $request * @param \Closure $next * @return mixed */ public function handle($request, Closure $next) { // this is only for path based URL $author = getUser(); if (!empty($author)) { // if the 'Website Owner' of the 'Autherticated User' does not match with the 'Retrieved Owner', then redirect to home if (Auth::guard('customer')->check() && Auth::guard('customer')->user()->user->username != $author->username) { return redirect()->route('customer.dashboard', Auth::guard('customer')->user()->user->username); } } return $next($request); } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.31 | Generation time: 0.53 |
proxy
|
phpinfo
|
Settings