PATH:
home
/
lab2454c
/
costbloc.com
/
vendor
/
spatie
/
laravel-ignition
/
src
/
Http
/
Middleware
<?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); } }
[+]
..
[-] RunnableSolutionsEnabled.php
[edit]