Google News
logo
Laravel - Interview Questions
List most important packages provided by Laravel?
Following are some official packages provided by Laravel:
 
Authentication :
Laravel makes implementing authentication very simple. In fact, almost everything is configured for you out of the box.
//Make authorization views and scaffolding
php artisan make:auth
Passport :
* In Short, Laravel provides Passport for API Authentication.
* Laravel Passport is an OAuth2 server and API authentication package that is simple to use

Cashier :
* Laravel Cashier provides an expressive, fluent interface to Stripe’s and Braintree’s subscription billing services
 
Scout :
* Laravel Scout provides a simple, driver based solution for adding full-text search to your Eloquent models.
* Using model observers, Scout will automatically keep your search indexes in sync with your Eloquent records
* Currently, Scout ships with an Algolia driver; however, writing custom drivers is simple and you are free to extend Scout with your own search implementations.

Socialite :
* Laravel's Socialite package makes it simple to authenticate your users to social login
* Socialite currently supports authentication with Facebook, Twitter, LinkedIn, Google, GitHub and Bitbucket.
Advertisement