taxation module

This commit is contained in:
2024-04-16 10:54:23 +05:45
parent 6ae0143005
commit 442822e472
16 changed files with 433 additions and 47 deletions

View File

@ -1,6 +1,7 @@
<?php
use Illuminate\Support\Facades\Route;
use Modules\Taxation\Http\Controllers\InvoiceController;
use Modules\Taxation\Http\Controllers\TaxationController;
/*
@ -12,8 +13,11 @@ use Modules\Taxation\Http\Controllers\TaxationController;
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
*/
Route::group([], function () {
Route::resource('taxation', TaxationController::class)->names('taxation');
Route::resource('invoice', InvoiceController::class)->names('invoice');
Route::get('clone-product', [InvoiceController::class, 'cloneProduct'])->name('cloneProduct');
});