/
home
/
sjslayjy
/
public_html
/
sag_latest
/
vendor
/
spatie
/
laravel-ignition
/
src
/
Http
/
Middleware
/
Upload File
HOME
<?php namespace Spatie\LaravelIgnition\Http\Middleware; use Closure; use Spatie\LaravelIgnition\Support\RunnableSolutionsGuard; class RunnableSolutionsEnabled { public function handle($request, Closure $next) { if (! RunnableSolutionsGuard::check()) { abort(404); } return $next($request); } }