Builder

Builder class Builder (View source) Methods void __construct(Connection $connection) Create a new database Schema manager. bool hasTable(string $table) Determine if the given table exists. bool hasColumn(string $table, string $column) Determine if the given table has a given column. bool hasColumns(string $table, array $columns) Determine if the given table has given columns. string getColumnType(string $table, string $column) Get the data type for the given column nam

Builder

Builder class Builder (View source) Methods void __construct(Builder $query) Create a new Eloquent query builder instance. $this withGlobalScope(string $identifier, Scope|Closure $scope) Register a new global scope. $this withoutGlobalScope(Scope|string $scope) Remove a registered global scope. $this withoutGlobalScopes(array $scopes = null) Remove all or passed registered global scopes. array removedScopes() Get an array of global scopes that were removed from the que

BroadcastServiceProvider::__call()

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

BroadcastServiceProvider::when()

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

BroadcastServiceProvider::register()

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

BroadcastServiceProvider::__construct()

void __construct(Application $app) Create a new service provider instance. Parameters Application $app Return Value void

BroadcastServiceProvider

BroadcastServiceProvider class BroadcastServiceProvider 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

BroadcastServiceProvider::provides()

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

BroadcastServiceProvider::isDeferred()

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

BroadcastServiceProvider::compiles()

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