Category: Laravel

It's an easy-to-use deployment tool to deploy your Laravel apps containerized with Docker.

Start launching your sites in just minutes using our https://uselauncher.com.

use Illuminate\Queue\Middleware\RateLimited; public function middleware() { return [new RateLimited('backups')]; } v8.45.0 Allow setting middleware on queued Mailables (https://github.com/laravel/framework/pull/37568)

use Illuminate\Bus\Queueable; use Illuminate\Mail\Mailable; use Illuminate\Queue\Middleware\RateLimited; use Illuminate\Queue\SerializesModels; class OrderShipped extends Mailable { use Queueable, SerializesModels; public function middleware() { return [new RateLimited('limiter')]; }} v8.52.0 Support job middleware on queued listeners (https://github.com/laravel/framework/pull/38128)

use App\Events\PodcastProcessed; use Illuminate\Queue\Middleware\RateLimited; class SendPodcastNotification { public function handle(PodcastProcessed $event) { // } public function middleware() { return [new RateLimited('limiter')]; }} v8.14.0 Added ability to dispatch unique jobs (https://github.com/laravel/framework/pull/35042)
Newsletter

Get the latest Laravel/PHP jobs, events and curated articles straight to your inbox, once a week

Fathom Analytics | Fast, simple and privacy-focused website analytics. Fathom Analytics | Fast, simple and privacy-focused website analytics.
Achieve superior email deliverability with ToastMail! Our AI-driven tool warms up inboxes, monitors reputation, and ensures emails reach their intended destination. Sign up today for a spam-free future. Achieve superior email deliverability with ToastMail! Our AI-driven tool warms up inboxes, monitors reputation, and ensures emails reach their intended destination. Sign up today for a spam-free future.
Community Partners