Files
kulakpos_web/public/restaurant/app/Http/Middleware/CheckInstallation.php

18 lines
292 B
PHP
Raw Normal View History

2026-03-15 17:08:23 +07:00
<?php
namespace App\Http\Middleware;
use Closure;
class CheckInstallation
{
public function handle($request, Closure $next)
{
if (! file_exists(storage_path('mightyRestaurant'))) {
return redirect('/install');
}
return $next($request);
}
}