ConsoleSupportServiceProvider::pathsToPublish()

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

UserProviderInterface

UserProviderInterface interface UserProviderInterface (View source) Methods UserInterface|null retrieveById(mixed $identifier) Retrieve a user by their unique identifier. UserInterface|null retrieveByToken(mixed $identifier, string $token) Retrieve a user by by their unique identifier and "remember me" token. void updateRememberToken(UserInterface $user, string $token) Update the "remember me" token for the given user in storage. UserInterface|null retrieveByCredentials(arr

SyncConnector

SyncConnector class SyncConnector implements ConnectorInterface (View source) Methods Queue connect(array $config) Establish a queue connection.

MorphToMany::getParent()

Model getParent() Get the parent model of the relation. Return Value Model

FileStore::getDirectory()

string getDirectory() Get the working directory of the cache. Return Value string

CallQueuedHandler::failed()

void failed(array $data, Exception $e) Call the failed method on the job instance. The exception that caused the failure will be passed. Parameters array $data Exception $e Return Value void

AssetPublishCommand::error()

void error(string $string) Write a string as error output. Parameters string $string Return Value void

SQLiteGrammar::compileDelete()

string compileDelete(Builder $query) Compile a delete statement into SQL. Parameters Builder $query Return Value string

Factory::startSection()

void startSection(string $section, string $content = '') Start injecting content into a section. Parameters string $section string $content Return Value void

Eloquent: Collections

Eloquent: Collections Introduction Available Methods Custom Collections Introduction All multi-result sets returned by Eloquent are instances of the Illuminate\Database\Eloquent\Collection object, including results retrieved via the get method or accessed via a relationship. The Eloquent collection object extends the Laravel base collection, so it naturally inherits dozens of methods used to fluently work with the underlying array of Eloquent models. Of course, all collections also serve as i