| Package Data | |
|---|---|
| Maintainer Username: | encore |
| Maintainer Contact: | zosong@126.com (z-song) |
| Package Create Date: | 2017-08-07 |
| Package Last Update: | 2021-05-05 |
| Home Page: | http://laravel-admin.org/ |
| Language: | Blade |
| License: | MIT |
| Last Refreshed: | 2025-11-03 03:00:28 |
| Package Statistics | |
|---|---|
| Total Downloads: | 64,438 |
| Monthly Downloads: | 113 |
| Daily Downloads: | 2 |
| Total Stars: | 55 |
| Total Watchers: | 3 |
| Total Forks: | 37 |
| Total Open Issues: | 9 |
Inspired by laravel-api-tester.

$ composer require laravel-admin-ext/api-tester -vvv
$ php artisan vendor:publish --tag=api-tester
Then last run flowing command to import menu and permission:
$ php artisan admin:import api-tester
Finally open http://localhost/admin/api-tester.
api-tester supports 3 configuration, open config/admin.php find extensions:
'extensions' => [
'api-tester' => [
// route prefix for APIs
'prefix' => 'api',
// auth guard for api
'guard' => 'api',
// If you are not using the default user model as the authentication model, set it up
'user_retriever' => function ($id) {
return \App\User::find($id);
},
]
]
Licensed under The MIT License (MIT).