I'm using Redis queues in a project and now I find myself in a position where I need to delete a job...
Been running into some weird errors with queues and supervisor today. Got a message saying that none...
We've been using Rocketeer for quite some time now, until a couple weeks ago when suddenly new relea...
Just out of curiosity, I'm wondering if anybody has any experience with using both the built in Redi...
I'm using Beanstalkd to power the queue for my app. For some jobs I'm using Queue::later(). Unfortun...
Don't know what your exact setup is, but I'd probably do it like that: You got your BaseController...
Instead of doing that, why not use dependency injection? Something like this: use League\Fractal\Man...
Laravel actually sets deleted_at to NULL to restore a record. So, as ranisalt said, just use the res...
That would be $user = User::find(1); $user->isSoftDeleting(); It's all in the code, btw. A quick...
Have a look at Fractal: https://github.com/thephpleague/fractal
The Laravel portal for problem solving, knowledge sharing and community building.