Laravel offers a variety of official packages that extend its functionality and simplify common tasks. Here are some notable official packages:
- Cashier: Provides an expressive, fluent interface to Stripe's and Paddle's subscription billing services.
- Envoy: Allows you to run common tasks on remote servers, such as deployment and task automation.
- Passport: Provides a full OAuth2 server implementation for your Laravel application, enabling API authentication.
- Scout: Integrates with Algolia and other search engines to provide full-text search capabilities for your Eloquent models.
- Socialite: Handles OAuth authentication with various providers like Facebook, Twitter, Google, and more.
- Telescope: A debugging assistant that provides insight into the requests coming into your application, exceptions, log entries, database queries, queued jobs, mail, notifications, cache operations, scheduled tasks, and more.
- Horizon: Provides a beautiful dashboard and code-driven configuration for your Redis queues.
- Jetstream: A starter kit for Laravel applications that includes authentication, two-factor authentication, session management, API support via Laravel Sanctum, and optional team management.
- Breeze: A minimal, simple implementation of all of Laravel's authentication features, including login, registration, password reset, email verification, and password confirmation.
- Dusk: Provides an expressive, easy-to-use browser automation and testing API.
- Sanctum: Provides a featherweight authentication sy...