HasOneOrMany::relatedUpdatedAt()

string relatedUpdatedAt() Get the name of the related model's "updated at" column. Return Value string

Model::newEloquentBuilder()

Builder|Model newEloquentBuilder(Builder $query) Create a new Eloquent query builder for the model. Parameters Builder $query Return Value Builder|Model

EventMakeCommand::ask()

string ask(string $question, string $default = null) Prompt the user for input. Parameters string $question string $default Return Value string

JoinClause::whereColumn()

Builder|Builder whereColumn(string|array $first, string|null $operator = null, string|null $second = null, string|null $boolean = 'and') Add a "where" clause comparing two columns to the query. Parameters string|array $first string|null $operator string|null $second string|null $boolean Return Value Builder|Builder

MorphOneOrMany::getHasCompareKey()

string getHasCompareKey() Get the key for comparing against the parent key in "has" query. Return Value string

ControllerMakeCommand::askWithCompletion()

string askWithCompletion(string $question, array $choices, string $default = null) Prompt the user for input with auto completion. Parameters string $question array $choices string $default Return Value string

AppNameCommand::setLaravel()

void setLaravel(Container $laravel) Set the Laravel application instance. Parameters Container $laravel Return Value void

SessionManager::__construct()

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

BusServiceProvider::register()

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

CallbackEvent::sendOutputTo()

$this sendOutputTo(string $location, bool $append = false) Send the output of the command to a given location. Parameters string $location bool $append Return Value $this