1 | <?php |
||
9 | class CheckModelFound |
||
10 | { |
||
11 | /** |
||
12 | * Currently Requested ModelAdmin. |
||
13 | */ |
||
14 | protected $modelAdmin; |
||
15 | |||
16 | /** |
||
17 | * Create a new filter instance. |
||
18 | */ |
||
19 | public function __construct(AdminManager $adminManager) |
||
27 | |||
28 | /** |
||
29 | * Handle an incoming request. |
||
30 | * |
||
31 | * @param \Illuminate\Http\Request $request |
||
32 | * @param \Closure $next |
||
33 | * |
||
34 | * @return mixed |
||
35 | */ |
||
36 | public function handle($request, Closure $next) |
||
44 | } |
||
45 |