15 lines
499 B
PHP
15 lines
499 B
PHP
<?php
|
|
|
|
use App\Domains\ParticipantInvoice\Controllers\CreateParticipantInvoiceController;
|
|
use App\Middleware\IdentifyTenant;
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::prefix('api/v1')
|
|
->group(function () {
|
|
Route::middleware(IdentifyTenant::class)->group(function () {
|
|
Route::middleware(['auth'])->group(function () {
|
|
Route::get('participant-invoice/{participantIdentifier}', CreateParticipantInvoiceController::class);
|
|
});
|
|
});
|
|
});
|