skip to Main Content

Laravel – The POST method is not supported for route admin/bill. Supported methods: GET, HEAD

In Laravel i use ajax for adding and fetching data from MySQL Database through blade template, i have add form summation on onsubmit event. Please Help me. My codes are. Route.php Route::get('admin/bill',[BillingController::class, 'bill'])->name('billing'); Route::post('admin/billing/add',[BillingController::class, 'billadd'])->name('admin.bill.add'); Controller.php public function billadd(Request $request){…

VIEW QUESTION

Jquery – Covert ajax output into option

I am getting html after ajax call and I want to change the output into option. I have select tags where I want to append these options <div class="views-element-container"> <div class="view view-contact-view-id-contact view-display-id-page_2 js-view-dom-id"> <div class="view-content"> 1009abc example 1008xyz example…

VIEW QUESTION
Back To Top
Search