Initial commit

This commit is contained in:
Kwesi Banson Jnr
2026-08-04 14:50:01 +00:00
commit 2cfcfade4e
1605 changed files with 499334 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
<?php
namespace App\Http\Middleware;
use Illuminate\Auth\Middleware\Authenticate as Middleware;
class Authenticate extends Middleware
{
/**
* Get the path the user should be redirected to when they are not authenticated.
*
* @param \Illuminate\Http\Request $request
* @return string|null
*/
/*
protected function redirectTo($request)
{
dd($request->expectsJson());
if (! $request->expectsJson()) {
return route('login');
}
else{
return route('api');
}
}
*/
protected function redirectTo($request) {
return $request->expectsJson() || str_starts_with($request->path(), 'api/') ? null : '/login'; // Adjust to your admin path
}
}