laravel worker on production shared server
I am using jobs in Laravel but do not know how to them in production on shared server I 'm not sure my shared server is able to handle the ubuntu supervisor script to handle queues Is there any other…
I am using jobs in Laravel but do not know how to them in production on shared server I 'm not sure my shared server is able to handle the ubuntu supervisor script to handle queues Is there any other…
I am trying to convert an image stored in a MySQL Database to a real image. I am able to download the image, decode it and transfer it to a folder. However, when I try to open the image I…
It is a design question, and though I am a full stack dev, I am weaker on frontend UX stuff: I am creating a laravel/Inertia/vue app, where each user has portfolios. Portfolios rely on calculations which are usually done overnight.…
I am struggling with that for a while now. When I logout and straight Login again, I get a 419 Error through the API. I need to refresh the login page to get a new CSRF token. I anticipate that…
I'am kind of new to laravel and currently working with pipelines. As I know, if one step inside the Pipeline fail, the whole Pipeline get stopped at that step. That is exactly what I want, so I'am fine with that.…
I am trying to achive Single view page form.blade.php that deal with create edit and update function in laravel 11 . Except the update are working form.blade.php <x-app-layout> <x-create-form-layout :action="$action" :method="$method" > <x-slot name="title"> {{ isset($category) ? 'Edit Category' :…
I'm running a website using laravel (v.10), filament (v.3) and I'm using SpatieMediaLibrary (updated to latest version) for uploading files to aws. I serve the content through CloudFront. My bucket policy for the moment is: { "Version": "2012-10-17", "Id": "PolicyForCloudFrontPrivateContent",…
I have been struggling to make this happen, but every time I failed. I have two models - Map and User, and both can have many Maps (or users, respectively). Thi thing is, map has a primary key slug, while…
I'm trying to write a PHPUnit test using Mockery, and I keep running into issues when using the null coalescing operator (??) with mocked properties. Specifically, ?? seems to always return null, which causes the ?? operator to fall back…
I am having problems with attaching a middleware to my existing routes. Problem is with extra parameters, which cause syntax errors. My current route: Route::get('summary/{topicid}/{issueid}', [AppHttpControllersSummaryController::class, 'show']); Adding the needed middleware is described in the package I am trying to…