You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
610 B
23 lines
610 B
<?php
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
use Closure;
|
|
use Illuminate\Http\Request;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
|
|
class AdminOrServiciosRole
|
|
{
|
|
/**
|
|
* Handle an incoming request.
|
|
*
|
|
* @param \Closure(\Illuminate\Http\Request): (\Symfony\Component\HttpFoundation\Response) $next
|
|
*/
|
|
public function handle($request, Closure $next)
|
|
{
|
|
if (!auth()->check() || !in_array(auth()->user()->rol, ['admin', 'servicios'])) {
|
|
return redirect()->route('dashboard')->with('error', 'No tienes permisos para acceder a esta sección.');
|
|
}
|
|
return $next($request);
|
|
}
|
|
}
|