dari laptop

This commit is contained in:
Saufi
2026-05-14 16:27:38 +08:00
commit 3eef077798
4005 changed files with 1088651 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<?php
namespace App\Http\Middleware;
use Closure;
use Illuminate\Http\Request;
use Symfony\Component\HttpFoundation\Response;
class KakitanganMiddleware
{
/**
* Handle an incoming request.
*
* @param \Closure(\Illuminate\Http\Request): (\Symfony\Component\HttpFoundation\Response) $next
*/
public function handle(Request $request, Closure $next): Response
{
if (auth()->check() && in_array(auth()->user()->role, ['pembantu tadbir','pp kesihatan','pp tadbir','pegawai tadbir','pengarah', 'super'])) {
return $next($request);
}
abort(403, 'Akses ditolak. awak bukan kakitangan kita.');
}
}