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

Woocommerce ajax oad more and ajax filters

I found this code for woocommerce load more button and it works fine at first but when I filter the products with an ajax plug in the button doesn't respond at all. The link of the code: https://github.com/bassscape/woocommerce-ajax-load-more-products <?php //-----------------------------------------------------…

VIEW QUESTION
Back To Top
Search