Methods |
public
|
__construct(Application $app): void
Create a new service provider instance.
Create a new service provider instance.
|
#
|
public
|
register(): void
Register any application services.
Register any application services.
|
#
|
public
|
booting(Closure $callback): void
Register a booting callback to be run before the "boot" method is called.
Register a booting callback to be run before the "boot" method is called.
|
#
|
public
|
booted(Closure $callback): void
Register a booted callback to be run after the "boot" method is called.
Register a booted callback to be run after the "boot" method is called.
|
#
|
public
|
callBootingCallbacks(): void
Call the registered booting callbacks.
Call the registered booting callbacks.
|
#
|
public
|
callBootedCallbacks(): void
Call the registered booted callbacks.
Call the registered booted callbacks.
|
#
|
protected
|
mergeConfigFrom(string $path, string $key): void
Merge the given configuration with the existing configuration.
Merge the given configuration with the existing configuration.
|
#
|
protected
|
replaceConfigRecursivelyFrom(string $path, string $key): void
Replace the given configuration with the existing configuration recursively.
Replace the given configuration with the existing configuration recursively.
|
#
|
protected
|
loadRoutesFrom(string $path): void
Load the given routes file if routes are not already cached.
Load the given routes file if routes are not already cached.
|
#
|
protected
|
loadViewsFrom(string|array $path, string $namespace): void
Register a view file namespace.
Register a view file namespace.
|
#
|
protected
|
loadViewComponentsAs(string $prefix, array $components): void
Register the given view components with a custom prefix.
Register the given view components with a custom prefix.
|
#
|
protected
|
loadTranslationsFrom(string $path, string|null $namespace = null): void
Register a translation file namespace or path.
Register a translation file namespace or path.
|
#
|
protected
|
loadJsonTranslationsFrom(string $path): void
Register a JSON translation file path.
Register a JSON translation file path.
|
#
|
protected
|
loadMigrationsFrom(array|string $paths): void
Register database migration paths.
Register database migration paths.
|
#
|
protected
|
loadFactoriesFrom(array|string $paths): void
Register Eloquent model factory paths.
Register Eloquent model factory paths.
Deprecated
Will be removed in a future Laravel version.
|
#
|
protected
|
callAfterResolving(string $name, callable $callback): void
Setup an after resolving listener, or fire immediately if already resolved.
Setup an after resolving listener, or fire immediately if already resolved.
|
#
|
protected
|
publishesMigrations(array $paths, mixed $groups = null): void
Register migration paths to be published by the publish command.
Register migration paths to be published by the publish command.
|
#
|
protected
|
publishes(array $paths, mixed $groups = null): void
Register paths to be published by the publish command.
Register paths to be published by the publish command.
|
#
|
protected
|
ensurePublishArrayInitialized(string $class): void
Ensure the publish array for the service provider is initialized.
Ensure the publish array for the service provider is initialized.
|
#
|
protected
|
addPublishGroup(string $group, array $paths): void
Add a publish group / tag to the service provider.
Add a publish group / tag to the service provider.
|
#
|
public
static
|
pathsToPublish(string|null $provider = null, string|null $group = null): array
Get the paths to publish.
Get the paths to publish.
|
#
|
protected
static
|
pathsForProviderOrGroup(string|null $provider, string|null $group): array
Get the paths for the provider or group (or both).
Get the paths for the provider or group (or both).
|
#
|
protected
static
|
pathsForProviderAndGroup(string $provider, string $group): array
Get the paths for the provider and group.
Get the paths for the provider and group.
|
#
|
public
static
|
publishableProviders(): array
Get the service providers available for publishing.
Get the service providers available for publishing.
|
#
|
public
static
|
publishableMigrationPaths(): array
Get the migration paths available for publishing.
Get the migration paths available for publishing.
|
#
|
public
static
|
publishableGroups(): array
Get the groups available for publishing.
Get the groups available for publishing.
|
#
|
public
|
commands(array|mixed $commands): void
Register the package's custom Artisan commands.
Register the package's custom Artisan commands.
|
#
|
protected
|
optimizes(string|null $optimize = null, string|null $clear = null, string|null $key = null): void
Register commands that should run on "optimize" or "optimize:clear".
Register commands that should run on "optimize" or "optimize:clear".
|
#
|
public
|
provides(): array
Get the services provided by the provider.
Get the services provided by the provider.
|
#
|
public
|
when(): array
Get the events that trigger this service provider to register.
Get the events that trigger this service provider to register.
|
#
|
public
|
isDeferred(): bool
Determine if the provider is deferred.
Determine if the provider is deferred.
|
#
|
public
static
|
defaultProviders(): DefaultProviders
Get the default providers for a Laravel application.
Get the default providers for a Laravel application.
|
#
|
public
static
|
addProviderToBootstrapFile(string $provider, string $path = null): bool
Add the given provider to the application's provider bootstrap file.
Add the given provider to the application's provider bootstrap file.
|
#
|