8 lines
183 B
PHP
8 lines
183 B
PHP
<?php
|
|
|
|
Route::prefix('providerintegrations')->group(function () {
|
|
Route::get('/', function () {
|
|
return response()->json(['module' => 'ProviderIntegrations']);
|
|
});
|
|
});
|