skip to Main Content
author
147 views
0 votes

Laravel notification is not dispatched

I’m a beginner of Laravel. And for the training of it, I’m learning how to use Laravel following Laravel Bootcamp.<br

author
45 views
0 votes

I have a problem in Laravel with .blade.php views

This are my routes
Route::get('/product/create',[ProductoController::class,'createProduct'])->name('product.create')->middleware('auth');

Route::post('/product/create',[ProductoController::class,'storeProduct'])->middleware('auth');

Route::get('/product/edit/{id}',[ProductoController::class, 'editProduct'])->name('product.edit');

Route::put('/product/update/{id}',[ProductoController::class, 'updateProduct'])->name('product.update');

I have a

Back To Top
Search