mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-07 21:44:51 +00:00
26 lines
551 B
PHP
26 lines
551 B
PHP
<?php
|
|
|
|
namespace InvoiceShelf\Http\Middleware;
|
|
|
|
use Closure;
|
|
use InvoiceShelf\Models\Setting;
|
|
use InvoiceShelf\Space\InstallUtils;
|
|
|
|
class InstallationMiddleware
|
|
{
|
|
/**
|
|
* Handle an incoming request.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @return mixed
|
|
*/
|
|
public function handle($request, Closure $next)
|
|
{
|
|
if (! InstallUtils::isDbCreated() || Setting::getSetting('profile_complete') !== 'COMPLETED') {
|
|
return redirect('/installation');
|
|
}
|
|
|
|
return $next($request);
|
|
}
|
|
}
|