Adding Profession Import (without specified character)
This commit is contained in:
parent
aa2b27bc50
commit
3692fcc485
4 changed files with 152 additions and 0 deletions
|
|
@ -82,6 +82,12 @@ Route::prefix('items')->name('item.')->group(function () {
|
|||
// ----------------------------
|
||||
Route::middleware(['auth'])->group(function() {
|
||||
|
||||
// Profession
|
||||
Route::prefix('profession')->name('profession.')->group(function() {
|
||||
Route::get('/create', [ProfessionController::class, 'create'])->name('create');
|
||||
Route::post('/', [ProfessionController::class, 'store'])->name('store');
|
||||
});
|
||||
|
||||
Route::prefix('profile')->name('profile.')->group(function () {
|
||||
Route::get('/', [ProfileController::class, 'index'])->name('index');
|
||||
Route::get('/edit', [ProfileController::class, 'edit'])->name('edit');
|
||||
|
|
|
|||
Reference in a new issue