first commit
This commit is contained in:
24
app/Http/Middleware/AdminMiddleware.php
Normal file
24
app/Http/Middleware/AdminMiddleware.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Middleware;
|
||||
|
||||
use Closure;
|
||||
use Illuminate\Http\Request;
|
||||
use Symfony\Component\HttpFoundation\Response;
|
||||
|
||||
class AdminMiddleware
|
||||
{
|
||||
/**
|
||||
* 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() && auth()->user()->role === 'super') {
|
||||
return $next($request);
|
||||
}
|
||||
|
||||
abort(403, 'Akses ditolak. Awak bukan admin.');
|
||||
}
|
||||
}
|
||||
24
app/Http/Middleware/KakitanganMiddleware.php
Normal file
24
app/Http/Middleware/KakitanganMiddleware.php
Normal 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.');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user