composer require xgbnl/laravel-swaggerEdit App\Providers\AppServiceProvider
use Xgbnl\LaravelSwagger\SwaggerServiceProvider;
public function register()
{
// allow local env access
if ($this->app->isLocal()) {
$this->app->register(SwaggerServiceProvider::class);
}
}php artisan swagger:publishlaravel.test/api/docsYou must assigned app url.
APP_URL=http://laravel.test