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

18 lines
292 B
PHP

<?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);
}
}