Archived
1
0
Fork 0

Adding Profession Import (without specified character)

This commit is contained in:
Henrik Hautakoski 2021-09-01 15:17:00 +02:00
parent aa2b27bc50
commit 3692fcc485
4 changed files with 152 additions and 0 deletions

View file

@ -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');