2024-09-04 12:22:04 +05:45
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Support\Facades\Route;
|
2024-09-11 12:32:15 +05:45
|
|
|
use Modules\SalesEntry\Http\Controllers\SalesEntryController;
|
2024-09-04 12:22:04 +05:45
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Web Routes
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Here is where you can register web routes for your application. These
|
|
|
|
| routes are loaded by the RouteServiceProvider within a group which
|
|
|
|
| contains the "web" middleware group. Now create something great!
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
Route::group([], function () {
|
2024-09-11 12:32:15 +05:45
|
|
|
Route::resource('salesEntry', SalesEntryController::class)->names('salesEntry');
|
|
|
|
Route::get('clone-sales-product', [SalesEntryController::class, 'cloneSalesProduct'])->name('salesEntry.cloneSalesProduct');
|
2024-09-04 12:22:04 +05:45
|
|
|
});
|