skip to Main Content
124 views
0 votes

Php versions – PusherPusher::__construct(): Argument #1 ($auth_key) must be of type string, null given,

i have cloned my project from github when i try to composer install on laragon terminal i get this following

author
81 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