mirror of
https://gitlab.com/uldvstar/exchange-2.0.git
synced 2026-08-19 12:34:24 +00:00
e3e4b490b0
# Conflicts: # resources/views/partials/header.blade.php # routes/web.php
9 lines
311 B
PHP
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');
|
|
});
|
|
}); |