File tree 3 files changed +1
-7
lines changed
3 files changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ php artisan vendor:publish --provider="Asvae\ApiTester\ServiceProvider"
32
32
And edit ` config/api-tester.php ` as you please.
33
33
34
34
## Features
35
- * Display all the routes for application.
35
+ * Display routes for your application.
36
36
* Live search and sortable columns.
37
37
* CSRF token is handled for you.
38
38
* Define request body in [ JSON editor] ( https://github.com/josdejong/jsoneditor ) .
Original file line number Diff line number Diff line change @@ -21,10 +21,6 @@ public function index()
21
21
22
22
public function routes ()
23
23
{
24
- if (! config ('app.debug ' )) {
25
- abort (404 );
26
- }
27
-
28
24
$ routes = [];
29
25
foreach (\Route::getRoutes () as $ route ) {
30
26
/** @var \Illuminate\Routing\Route $route */
Original file line number Diff line number Diff line change 6
6
7
7
class ServiceProvider extends \Illuminate \Support \ServiceProvider
8
8
{
9
- protected $ defer = true ;
10
-
11
9
public function register ()
12
10
{
13
11
$ this ->app ->register (RouteServiceProvider::class);
You can’t perform that action at this time.
0 commit comments