skip to Main Content

Laravel Routing adding template name

I have a blade template called by Lodge.upload. Within that template I have the following code: <form name="app" action="storeSummons" enctype="multipart/form-data" method="post"> In my route files I have this: Route::post('/storeSummons',[AppHttpControllersLodgesController::class,'storeSummons'])->name('storeSummons'); When I try to post from this simple form (only two…

VIEW QUESTION
Back To Top
Search