Files
exchange-2.0/routes/billplz.php
T
2021-11-21 23:30:59 +08:00

9 lines
311 B
PHP

<?php
use Illuminate\Support\Facades\Route;
Route::group(['prefix' => 'billplz', 'as' => 'billplz.', 'namespace' => 'Billplz'], function () {
Route::group(['prefix' => 'bill', 'as' => 'bill.'], function () {
Route::post('/create', 'CreateBillplzBillController@create')->name('create');
});
});