mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-19 04:24:12 +00:00
11 lines
287 B
PHP
11 lines
287 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
use App\Http\Controllers\Rules\CheckRuleController;
|
|
|
|
Route::prefix('rule')
|
|
->as('rule.')
|
|
->group(function () {
|
|
Route::post('/check/eInvoice', [CheckRuleController::class, 'checkEInvoiceRule'])->name('check.einvoice');
|
|
});
|