HashServiceProvider::__call()

mixed __call(string $method, array $parameters) Dynamically handle missing method calls. Parameters string $method array $parameters Return Value mixed

HashServiceProvider::when()

array when() Get the events that trigger this service provider to register. Return Value array

HashServiceProvider::register()

void register() Register the service provider. Return Value void

HashServiceProvider::provides()

array provides() Get the services provided by the provider. Return Value array

HashServiceProvider::pathsToPublish()

static array pathsToPublish(string $provider = null, string $group = null) Get the paths to publish. Parameters string $provider string $group Return Value array

HashServiceProvider::isDeferred()

bool isDeferred() Determine if the provider is deferred. Return Value bool

HashServiceProvider::compiles()

static array compiles() Get a list of files that should be compiled for the package. Return Value array

HashServiceProvider::commands()

void commands(array|mixed $commands) Register the package's custom Artisan commands. Parameters array|mixed $commands Return Value void

HashServiceProvider

HashServiceProvider class HashServiceProvider extends ServiceProvider (View source) Methods void __construct(Application $app) Create a new service provider instance. from ServiceProvider void register() Register the service provider. static array pathsToPublish(string $provider = null, string $group = null) Get the paths to publish. from ServiceProvider void commands(array|mixed $commands) Register the package's custom Artisan commands. from ServiceProvider array provide

Hashing

Hashing Introduction Basic Usage Introduction The Laravel Hash facade provides secure Bcrypt hashing for storing user passwords. If you are using the built-in LoginController and RegisterController classes that are included with your Laravel application, they will automatically use Bcrypt for registration and authentication. Bcrypt is a great choice for hashing passwords because its "work factor" is adjustable, which means that the time it takes to generate a hash can be increased as hardwar