skip to Main Content

Php versions – Laravel jobs dont run asynchron

My Laravel Version 10, Jobs do not run asynchron. (The job gets executed but synchron) This is my setup: php artisan queue:table was run php artisan queue:work runs .env QUEUE_CONNECTION=database jobname.php namespace AppJobs; use IlluminateBusQueueable; use AppMailPasswordResetMail; use IlluminateSupportFacadesMail; use…

VIEW QUESTION

Why does this jQuery AJAX post request throw an error despite the fact that the post is successful?

I have made a blogging application in Laravel 8. I am currently working on submitting comments and comment replies via jQuery AJAX. The comment form template (viewsthemescalvinpartialscomment-form.blade.php): <div class="form-wrapper"> <div class="alert-box-ajax alert-box alert-box--success"> Your comment is pending </div> <div class="alert-box-ajax…

VIEW QUESTION

Storing array data in the database in Laravel

I was trying to store array data in the database, I didn't get the error message and it doesn't store it in the database. Here is my code in the blade file <form method="post" action="{{route('CheckOut')}}" enctype="multipart/form-data"> @csrf <div class="container"> Name:…

VIEW QUESTION
Back To Top
Search