Index
A
- AuthManager — Class in namespace Illuminate\Auth
- AuthServiceProvider — Class in namespace Illuminate\Auth
- $ GenericUser#attributes — Property in class GenericUser
All of the user's attributes.
- Guard::attemptBasic() — Method in class Guard
Attempt to authenticate using basic authentication.
- Guard::attempt() — Method in class Guard
Attempt to authenticate a user using the given credentials.
- Guard::attempting() — Method in class Guard
Register an authentication attempt event listener.
- ApcStore — Class in namespace Illuminate\Cache
- $ ApcStore#apc — Property in class ApcStore
The APC wrapper instance.
- ApcWrapper — Class in namespace Illuminate\Cache
- $ ApcWrapper#apcu — Property in class ApcWrapper
Indicates if APCu is supported.
- ArrayStore — Class in namespace Illuminate\Cache
- Repository::add() — Method in class Repository
Store an item in the cache if the key does not exist.
- TaggedCache::add() — Method in class TaggedCache
Store an item in the cache if the key does not exist.
- FileLoader::addNamespace() — Method in class FileLoader
Add a new namespace to the loader.
- LoaderInterface::addNamespace() — Method in class LoaderInterface
Add a new namespace to the loader.
- $ Repository#afterLoad — Property in class Repository
The after load callbacks for namespaces.
- Repository::afterLoading() — Method in class Repository
Register an after load callback for a given namespace.
- Repository::addNamespace() — Method in class Repository
Add a new namespace to the loader.
- Application — Class in namespace Illuminate\Console
- Application::add() — Method in class Application
Add a command to the console.
- Application::addToParent() — Method in class Application
Add the command to the parent instance.
- Command::argument() — Method in class Command
Get the value of a command argument.
- Command::ask() — Method in class Command
Prompt the user for input.
- Command::askWithCompletion() — Method in class Command
Prompt the user for input with auto completion.
- $ Container#aliases — Property in class Container
The registered type aliases.
- Container::alias() — Method in class Container
Alias a type to a shorter name.
- $ Guard#app — Property in class Guard
The wrapped kernel implementation.
- $ Queue#app — Property in class Queue
The wrapped kernel implementation.
- Manager::addConnection() — Method in class Manager
Register a connection with the manager.
- Connection::affectingStatement() — Method in class Connection
Run an SQL statement and get the number of rows affected.
- ConnectionInterface::affectingStatement() — Method in class ConnectionInterface
Run an SQL statement and get the number of rows affected.
- ConnectionResolver::addConnection() — Method in class ConnectionResolver
Add a connection to the resolver.
- $ DatabaseManager#app — Property in class DatabaseManager
The application instance.
- Builder::addUpdatedAtColumn() — Method in class Builder
Add the "updated at" column to an array of values.
- Builder::addHasWhere() — Method in class Builder
Add the "has" condition where clause to the query.
- Collection::add() — Method in class Collection
Add an item to the collection.
- $ Model#attributes — Property in class Model
The model's attributes.
- $ Model#appends — Property in class Model
The accessors to append to the model's array form.
- Model::addGlobalScope() — Method in class Model
Register a new global scope on the model.
- Model::all() — Method in class Model
Get all of the models from the database.
- Model::addObservableEvents() — Method in class Model
Add an observable event name.
- Model::applyGlobalScopes() — Method in class Model
Apply all of the global scopes to an Eloquent builder.
- Model::attributesToArray() — Method in class Model
Convert the model's attributes to an array.
- Model::asDateTime() — Method in class Model
Return a timestamp as DateTime object.
- BelongsTo::addConstraints() — Method in class BelongsTo
Set the base constraints on the relation query.
- BelongsTo::addEagerConstraints() — Method in class BelongsTo
Set the constraints for an eager load of the relation.
- BelongsTo::associate() — Method in class BelongsTo
Associate the model instance to the given parent.
- BelongsToMany::addConstraints() — Method in class BelongsToMany
Set the base constraints on the relation query.
- BelongsToMany::addEagerConstraints() — Method in class BelongsToMany
Set the constraints for an eager load of the relation.
- BelongsToMany::attachNew() — Method in class BelongsToMany
Attach all of the IDs that aren't in the current array.
- BelongsToMany::attach() — Method in class BelongsToMany
Attach a model to the parent.
- BelongsToMany::attacher() — Method in class BelongsToMany
Create a full attachment record payload.
- HasManyThrough::addConstraints() — Method in class HasManyThrough
Set the base constraints on the relation query.
- HasManyThrough::addEagerConstraints() — Method in class HasManyThrough
Set the constraints for an eager load of the relation.
- HasOneOrMany::addConstraints() — Method in class HasOneOrMany
Set the base constraints on the relation query.
- HasOneOrMany::addEagerConstraints() — Method in class HasOneOrMany
Set the constraints for an eager load of the relation.
- MorphOneOrMany::addConstraints() — Method in class MorphOneOrMany
Set the base constraints on the relation query.
- MorphOneOrMany::addEagerConstraints() — Method in class MorphOneOrMany
Set the constraints for an eager load of the relation.
- MorphTo::addEagerConstraints() — Method in class MorphTo
Set the constraints for an eager load of the relation.
- MorphTo::associate() — Method in class MorphTo
Associate the model instance to the given parent.
- MorphToMany::addEagerConstraints() — Method in class MorphToMany
Set the constraints for an eager load of the relation.
- Relation::addConstraints() — Method in class Relation
Set the base constraints on the relation query.
- Relation::addEagerConstraints() — Method in class Relation
Set the constraints for an eager load of the relation.
- ScopeInterface::apply() — Method in class ScopeInterface
Apply the scope to a given Eloquent query builder.
- SoftDeletingScope::apply() — Method in class SoftDeletingScope
Apply the scope to a given Eloquent query builder.
- SoftDeletingScope::addForceDelete() — Method in class SoftDeletingScope
Add the force delete extension to the builder.
- SoftDeletingScope::addRestore() — Method in class SoftDeletingScope
Add the restore extension to the builder.
- SoftDeletingScope::addWithTrashed() — Method in class SoftDeletingScope
Add the with-trashed extension to the builder.
- SoftDeletingScope::addOnlyTrashed() — Method in class SoftDeletingScope
Add the only-trashed extension to the builder.
- MigrationCreator::afterCreate() — Method in class MigrationCreator
Register a post migration create hook.
- $ Builder#aggregate — Property in class Builder
An aggregate function and column to be run.
- Builder::addSelect() — Method in class Builder
Add a new select column to the query.
- Builder::addNestedWhereQuery() — Method in class Builder
Add another query builder as a nested where to the query builder.
- Builder::addDateBasedWhere() — Method in class Builder
Add a date based (year, month, day) statement to the query.
- Builder::addDynamic() — Method in class Builder
Add a single dynamic where clause statement to the query.
- Builder::avg() — Method in class Builder
Retrieve the average of the values of a given column.
- Builder::aggregate() — Method in class Builder
Execute an aggregate function on the database.
- Builder::addBinding() — Method in class Builder
Add a binding to the query.
- Blueprint::addImpliedCommands() — Method in class Blueprint
Add the commands that are implied by the blueprint.
- Blueprint::addFluentIndexes() — Method in class Blueprint
Add the index commands fluently specified on columns.
- Blueprint::addColumn() — Method in class Blueprint
Add a new column to the blueprint.
- Blueprint::addCommand() — Method in class Blueprint
Add a new command to the blueprint.
- Grammar::addModifiers() — Method in class Grammar
Add the column modifiers to the definition.
- SQLiteGrammar::addForeignKeys() — Method in class SQLiteGrammar
Get the foreign key syntax for a table creation statement.
- SQLiteGrammar::addPrimaryKeys() — Method in class SQLiteGrammar
Get the primary key syntax for a table creation statement.
- Encrypter::addPadding() — Method in class Encrypter
Add PKCS7 padding to a given value.
- Filesystem::append() — Method in class Filesystem
Append to a file.
- Filesystem::allFiles() — Method in class Filesystem
Get all of the files from the given directory (recursive).
- AliasLoader — Class in namespace Illuminate\Foundation
- $ AliasLoader#aliases — Property in class AliasLoader
The array of class aliases.
- AliasLoader::alias() — Method in class AliasLoader
Add an alias to the loader.
- Application — Class in namespace Illuminate\Foundation
- Application::after() — Method in class Application
Register an "after" application filter.
- Application::abort() — Method in class Application
Throw an HttpException with the given data.
- Artisan — Class in namespace Illuminate\Foundation
- $ Artisan#app — Property in class Artisan
The application instance.
- $ Artisan#artisan — Property in class Artisan
The Artisan console instance.
- AssetPublisher — Class in namespace Illuminate\Foundation
- ConfigPublisher::alreadyPublished() — Method in class ConfigPublisher
Determine if a given package has already been published.
- AssetPublishCommand — Class in namespace Illuminate\Foundation\Console
- $ AssetPublishCommand#assets — Property in class AssetPublishCommand
The asset publisher instance.
- AutoloadCommand — Class in namespace Illuminate\Foundation\Console
- CommandMakeCommand::addNamespace() — Method in class CommandMakeCommand
Add the proper namespace to the command.
- ArtisanServiceProvider — Class in namespace Illuminate\Foundation\Providers
- ApplicationTrait — Class in namespace Illuminate\Foundation\Testing
- $ ApplicationTrait#app — Property in class ApplicationTrait
The Illuminate application instance.
- ApplicationTrait::action() — Method in class ApplicationTrait
Call a controller action and return the Response.
- AssertionsTrait — Class in namespace Illuminate\Foundation\Testing
- AssertionsTrait::assertResponseOk() — Method in class AssertionsTrait
Assert that the client response has an OK status code.
- AssertionsTrait::assertResponseStatus() — Method in class AssertionsTrait
Assert that the client response has a given code.
- AssertionsTrait::assertViewHas() — Method in class AssertionsTrait
Assert that the response view has a given piece of bound data.
- AssertionsTrait::assertViewHasAll() — Method in class AssertionsTrait
Assert that the view has a given list of bound data.
- AssertionsTrait::assertViewMissing() — Method in class AssertionsTrait
Assert that the response view is missing a piece of bound data.
- AssertionsTrait::assertRedirectedTo() — Method in class AssertionsTrait
Assert whether the client was redirected to a given URI.
- AssertionsTrait::assertRedirectedToRoute() — Method in class AssertionsTrait
Assert whether the client was redirected to a given route.
- AssertionsTrait::assertRedirectedToAction() — Method in class AssertionsTrait
Assert whether the client was redirected to a given action.
- AssertionsTrait::assertSessionHas() — Method in class AssertionsTrait
Assert that the session has a given list of values.
- AssertionsTrait::assertSessionHasAll() — Method in class AssertionsTrait
Assert that the session has a given list of values.
- AssertionsTrait::assertSessionHasErrors() — Method in class AssertionsTrait
Assert that the session has errors bound.
- AssertionsTrait::assertHasOldInput() — Method in class AssertionsTrait
Assert that the session has old input.
- HtmlBuilder::attributes() — Method in class HtmlBuilder
Build an HTML attribute string from an array.
- HtmlBuilder::attributeElement() — Method in class HtmlBuilder
Build a single attribute element.
- $ FrameGuard#app — Property in class FrameGuard
The wrapped kernel implementation.
- Request::ajax() — Method in class Request
Determine if the request is the result of an AJAX call.
- Request::all() — Method in class Request
Get all of the input and files for the request.
- Mailer::alwaysFrom() — Method in class Mailer
Set the global from address and name.
- Mailer::addContent() — Method in class Mailer
Add the content to a given message.
- Message::addAddresses() — Method in class Message
Add a recipient to the message.
- Message::attach() — Method in class Message
Attach a file to the message.
- Message::attachData() — Method in class Message
Attach in-memory data as an attachment.
- Paginator::appends() — Method in class Paginator
Add a query string value to the paginator.
- Paginator::appendArray() — Method in class Paginator
Add an array of query string values.
- Paginator::addQuery() — Method in class Paginator
Add a query string value to the paginator.
- Manager::addConnection() — Method in class Manager
Register a connection with the manager.
- DatabaseFailedJobProvider::all() — Method in class DatabaseFailedJobProvider
Get a list of all of the failed jobs.
- FailedJobProviderInterface::all() — Method in class FailedJobProviderInterface
Get a list of all of the failed jobs.
- BeanstalkdJob::attempts() — Method in class BeanstalkdJob
Get the number of times the job has been attempted.
- IronJob::attempts() — Method in class IronJob
Get the number of times the job has been attempted.
- Job::attempts() — Method in class Job
Get the number of times the job has been attempted.
- Job::autoDelete() — Method in class Job
Determine if job should be auto-deleted.
- RedisJob::attempts() — Method in class RedisJob
Get the number of times the job has been attempted.
- SqsJob::attempts() — Method in class SqsJob
Get the number of times the job has been attempted.
- SyncJob::attempts() — Method in class SyncJob
Get the number of times the job has been attempted.
- $ QueueManager#app — Property in class QueueManager
The application instance.
- QueueManager::addConnector() — Method in class QueueManager
Add a queue connection resolver.
- $ RemoteManager#app — Property in class RemoteManager
The application instance.
- $ SecLibGateway#auth — Property in class SecLibGateway
The authentication credential set.
- $ Controller#afterFilters — Property in class Controller
The "after" filters registered on the controller.
- Controller::afterFilter() — Method in class Controller
Register an "after" filter on the controller.
- ControllerDispatcher::assignAfter() — Method in class ControllerDispatcher
Apply the applicable after filters to the route.
- ControllerInspector::addUriWildcards() — Method in class ControllerInspector
Add wildcards to the given URI.
- ControllerGenerator::addMethods() — Method in class ControllerGenerator
Add the method stubs to the controller.
- Redirector::away() — Method in class Redirector
Create a new redirect response to an external URL (no validation).
- Redirector::action() — Method in class Redirector
Create a new redirect response to a controller action.
- $ Route#action — Property in class Route
The route action array.
- Route::afterFilters() — Method in class Route
Get the "after" filters for the route.
- Route::after() — Method in class Route
Add after filters to the route.
- Route::addFilters() — Method in class Route
Add the given filters to the route by type.
- $ RouteCollection#allRoutes — Property in class RouteCollection
An flattened array of all of the routes.
- $ RouteCollection#actionList — Property in class RouteCollection
A look-up table of routes by controller action.
- RouteCollection::add() — Method in class RouteCollection
Add a Route instance to the collection.
- RouteCollection::addToCollections() — Method in class RouteCollection
Add the given route to the arrays of routes.
- RouteCollection::addLookups() — Method in class RouteCollection
Add the route to any look-up tables if necessary.
- RouteCollection::addToActionList() — Method in class RouteCollection
Add a route to the controller action dictionary.
- Router::any() — Method in class Router
Register a new route responding to all verbs.
- Router::addFallthroughRoute() — Method in class Router
Add a fallthrough route for a controller.
- Router::addResourceIndex() — Method in class Router
Add the index method for a resourceful route.
- Router::addResourceCreate() — Method in class Router
Add the create method for a resourceful route.
- Router::addResourceStore() — Method in class Router
Add the store method for a resourceful route.
- Router::addResourceShow() — Method in class Router
Add the show method for a resourceful route.
- Router::addResourceEdit() — Method in class Router
Add the edit method for a resourceful route.
- Router::addResourceUpdate() — Method in class Router
Add the update method for a resourceful route.
- Router::addPutResourceUpdate() — Method in class Router
Add the update method for a resourceful route.
- Router::addPatchResourceUpdate() — Method in class Router
Add the update method for a resourceful route.
- Router::addResourceDestroy() — Method in class Router
Add the destroy method for a resourceful route.
- Router::addRoute() — Method in class Router
Add a route to the underlying route collection.
- Router::addWhereClausesToRoute() — Method in class Router
Add the necessary where clauses to the route based on its initial registration.
- Router::after() — Method in class Router
Register a new "after" filter with the router.
- Router::addGlobalFilter() — Method in class Router
Register a new global filter with the router.
- UrlGenerator::asset() — Method in class UrlGenerator
Generate a URL to an application asset.
- UrlGenerator::addPortToDomain() — Method in class UrlGenerator
Add the port to the domain if necessary.
- UrlGenerator::action() — Method in class UrlGenerator
Get the URL to a controller action.
- $ Middleware#app — Property in class Middleware
The wrapped kernel implementation.
- Middleware::addCookieToResponse() — Method in class Middleware
Add the session cookie to the application response.
- $ Store#attributes — Property in class Store
The session attributes.
- Store::addBagDataToSession() — Method in class Store
Merge all of the bag data into the session.
- Store::ageFlashData() — Method in class Store
Age the flash data for the session.
- Store::all() — Method in class Store
- {@inheritdoc}
- Arr — Class in namespace Illuminate\Support
- Arr::add() — Method in class Arr
Add an element to an array using "dot" notation if it doesn't exist.
- ClassLoader::addDirectories() — Method in class ClassLoader
Add directories to the class loader.
- Collection::all() — Method in class Collection
Get all of the items in the collection.
- ArrayableInterface — Class in namespace Illuminate\Support\Contracts
- App — Class in namespace Illuminate\Support\Facades
- Artisan — Class in namespace Illuminate\Support\Facades
- Auth — Class in namespace Illuminate\Support\Facades
- $ Facade#app — Property in class Facade
The application instance being facaded.
- $ Fluent#attributes — Property in class Fluent
All of the attributes set on the container.
- $ Manager#app — Property in class Manager
The application instance.
- MessageBag::add() — Method in class MessageBag
Add a message to the bag.
- MessageBag::all() — Method in class MessageBag
Get all of the messages for every key in the bag.
- MessageBag::any() — Method in class MessageBag
Determine if the message bag has any messages.
- $ ServiceProvider#app — Property in class ServiceProvider
The application instance.
- Str::ascii() — Method in class Str
Transliterate a UTF-8 value to ASCII.
- FileLoader::addNamespace() — Method in class FileLoader
Add a new namespace to the loader.
- LoaderInterface::addNamespace() — Method in class LoaderInterface
Add a new namespace to the loader.
- Translator::addNamespace() — Method in class Translator
Add a new namespace to the loader.
- DatabasePresenceVerifier::addWhere() — Method in class DatabasePresenceVerifier
Add a "where" clause to the given query.
- Factory::addExtensions() — Method in class Factory
Add the extensions to a validator instance.
- Validator::addFailure() — Method in class Validator
Add a failed rule and error message to the collection.
- Validator::addError() — Method in class Validator
Add an error message to the validator's collection of messages.
- Validator::anyFailingRequired() — Method in class Validator
Determine if any of the given attributes fail the required test.
- Validator::allFailingRequired() — Method in class Validator
Determine if all of the given attributes fail the required test.
- Validator::addExtensions() — Method in class Validator
Register an array of custom validator extensions.
- Validator::addImplicitExtensions() — Method in class Validator
Register an array of custom implicit validator extensions.
- Validator::addExtension() — Method in class Validator
Register a custom validator extension.
- Validator::addImplicitExtension() — Method in class Validator
Register a custom implicit validator extension.
- Validator::addReplacers() — Method in class Validator
Register an array of custom validator message replacers.
- Validator::addReplacer() — Method in class Validator
Register a custom validator message replacer.
- Validator::addCustomAttributes() — Method in class Validator
Add custom attributes to the validator.
- Validator::addCustomValues() — Method in class Validator
Add the custom values for the validator.
- $ Factory#aliases — Property in class Factory
Array of registered view name aliases.
- Factory::alias() — Method in class Factory
Add an alias for a view.
- Factory::addViewEvent() — Method in class Factory
Add an event for a given view.
- Factory::addClassEvent() — Method in class Factory
Register a class based view composer.
- Factory::addEventListener() — Method in class Factory
Add a listener to the event dispatcher.
- Factory::appendSection() — Method in class Factory
Stop injecting content into a section and append it.
- Factory::addLocation() — Method in class Factory
Add a location to the array of view locations.
- Factory::addNamespace() — Method in class Factory
Add a new namespace to the loader.
- Factory::addExtension() — Method in class Factory
Register a valid view extension and its engine.
- FileViewFinder::addLocation() — Method in class FileViewFinder
Add a location to the finder.
- FileViewFinder::addNamespace() — Method in class FileViewFinder
Add a namespace hint to the finder.
- FileViewFinder::addExtension() — Method in class FileViewFinder
Register an extension with the view finder.
- ViewFinderInterface::addLocation() — Method in class ViewFinderInterface
Add a location to the finder.
- ViewFinderInterface::addNamespace() — Method in class ViewFinderInterface
Add a namespace hint to the finder.
- ViewFinderInterface::addExtension() — Method in class ViewFinderInterface
Add a valid view extension to the finder.
- $ Package#author — Property in class Package
The name of the author.
B
- Guard::basic() — Method in class Guard
Attempt to authenticate using HTTP Basic Auth.
- Application::boot() — Method in class Application
Boot the Console application.
- BindingResolutionException — Class in namespace Illuminate\Container
- $ Container#bindings — Property in class Container
The container's bindings.
- Container::bound() — Method in class Container
Determine if the given abstract type has been bound.
- Container::bind() — Method in class Container
Register a binding with the container.
- Container::bindIf() — Method in class Container
Register a binding if it hasn't already been registered.
- Container::bindShared() — Method in class Container
Bind a shared Closure into the container.
- Container::build() — Method in class Container
Instantiate a concrete instance of the given type.
- Manager::bootEloquent() — Method in class Manager
Bootstrap Eloquent so it is ready for usage.
- Connection::beginTransaction() — Method in class Connection
Start a new database transaction.
- ConnectionInterface::beginTransaction() — Method in class ConnectionInterface
Start a new database transaction.
- BaseCommand — Class in namespace Illuminate\Database\Console\Migrations
- DatabaseServiceProvider::boot() — Method in class DatabaseServiceProvider
Bootstrap the application events.
- Builder — Class in namespace Illuminate\Database\Eloquent
- $ Model#booted — Property in class Model
The array of booted models.
- Model::bootIfNotBooted() — Method in class Model
Check if the model needs to be booted and if so, do it.
- Model::boot() — Method in class Model
The "booting" method of the model.
- Model::bootTraits() — Method in class Model
Boot all of the bootable traits on the model.
- Model::belongsTo() — Method in class Model
Define an inverse one-to-one or many relationship.
- Model::belongsToMany() — Method in class Model
Define a many-to-many relationship.
- BelongsTo — Class in namespace Illuminate\Database\Eloquent\Relations
- BelongsToMany — Class in namespace Illuminate\Database\Eloquent\Relations
- BelongsToMany::buildDictionary() — Method in class BelongsToMany
Build model dictionary keyed by the relation's foreign key.
- HasManyThrough::buildDictionary() — Method in class HasManyThrough
Build model dictionary keyed by the relation's foreign key.
- HasOneOrMany::buildDictionary() — Method in class HasOneOrMany
Build model dictionary keyed by the relation's foreign key.
- MorphTo::buildDictionary() — Method in class MorphTo
Build a dictionary with the models.
- SoftDeletingTrait::bootSoftDeletingTrait() — Method in class SoftDeletingTrait
Boot the soft deleting trait for a model.
- $ QueryException#bindings — Property in class QueryException
The bindings for the query.
- Builder — Class in namespace Illuminate\Database\Query
- $ Builder#bindings — Property in class Builder
The current query value bindings.
- $ Builder#backups — Property in class Builder
The backups of fields while doing a pagination count.
- Builder::buildRawPaginator() — Method in class Builder
Build a paginator instance from a raw result array.
- Builder::backupFieldsForCount() — Method in class Builder
Backup certain fields for a pagination count.
- $ JoinClause#bindings — Property in class JoinClause
The "on" bindings for the join.
- Blueprint — Class in namespace Illuminate\Database\Schema
- Blueprint::build() — Method in class Blueprint
Execute the blueprint against the database.
- Blueprint::bigIncrements() — Method in class Blueprint
Create a new auto-incrementing big integer column on the table.
- Blueprint::bigInteger() — Method in class Blueprint
Create a new big integer column on the table.
- Blueprint::boolean() — Method in class Blueprint
Create a new boolean column on the table.
- Blueprint::binary() — Method in class Blueprint
Create a new binary column on the table.
- Builder — Class in namespace Illuminate\Database\Schema
- Builder::build() — Method in class Builder
Execute the blueprint to build / modify the table.
- Builder::blueprintResolver() — Method in class Builder
Set the Schema Blueprint resolver callback.
- $ Encrypter#block — Property in class Encrypter
The block size of the cipher.
- $ Application#booted — Property in class Application
Indicates if the application has "booted".
- $ Application#bootingCallbacks — Property in class Application
The array of booting callbacks.
- $ Application#bootedCallbacks — Property in class Application
The array of booted callbacks.
- Application::bindInstallPaths() — Method in class Application
Bind the installation paths to the application.
- Application::bound() — Method in class Application
Determine if the given abstract type has been bound.
- Application::before() — Method in class Application
Register a "before" application filter.
- Application::boot() — Method in class Application
Boot the application's service providers.
- Application::bootApplication() — Method in class Application
Boot the application and fire app callbacks.
- Application::booting() — Method in class Application
Register a new boot listener.
- Application::booted() — Method in class Application
Register a new "booted" listener.
- ApplicationTrait::be() — Method in class ApplicationTrait
Set the currently logged in user for the application.
- BcryptHasher — Class in namespace Illuminate\Hashing
- FormBuilder::button() — Method in class FormBuilder
Create a button element.
- Mailer::buildQueueCallable() — Method in class Mailer
Build the callable for a queued e-mail job.
- Message::bcc() — Method in class Message
Add a blind carbon copy to the message.
- BootstrapPresenter — Class in namespace Illuminate\Pagination
- $ Factory#baseUrl — Property in class Factory
The base URL in use by the paginator.
- Paginator::buildFragment() — Method in class Paginator
Build the full fragment portion of a URL.
- BeanstalkdQueue — Class in namespace Illuminate\Queue
- Manager::bulk() — Method in class Manager
Push a new an array of jobs onto the queue.
- BeanstalkdConnector — Class in namespace Illuminate\Queue\Connectors
- BeanstalkdJob — Class in namespace Illuminate\Queue\Jobs
- BeanstalkdJob::bury() — Method in class BeanstalkdJob
Bury the job in the queue.
- Queue::bulk() — Method in class Queue
Push an array of jobs onto the queue.
- $ Controller#beforeFilters — Property in class Controller
The "before" filters registered on the controller.
- Controller::beforeFilter() — Method in class Controller
Register a "before" filter on the controller.
- ControllerDispatcher::before() — Method in class ControllerDispatcher
Call the "before" filters for the controller.
- Redirector::back() — Method in class Redirector
Create a new redirect response to the previous location.
- Route::beforeFilters() — Method in class Route
Get the "before" filters for the route.
- Route::bind() — Method in class Route
Bind the route to a given request for execution.
- Route::bindParameters() — Method in class Route
Extract the parameter list from the request.
- Route::bindPathParameters() — Method in class Route
Get the parameter matches for the path portion of the URI.
- Route::bindHostParameters() — Method in class Route
Extract the parameter list from the host part of the request.
- Route::before() — Method in class Route
Add before filters to the route.
- $ Router#binders — Property in class Router
The registered route value binders.
- Router::before() — Method in class Router
Register a new "before" filter with the router.
- Router::bind() — Method in class Router
Add a new route parameter binder.
- SessionManager::buildSession() — Method in class SessionManager
Build the session instance.
- $ Store#bags — Property in class Store
The session bags.
- $ Store#bagData — Property in class Store
Local copies of the session bag data.
- Arr::build() — Method in class Arr
Build a new array using a callback.
- Blade — Class in namespace Illuminate\Support\Facades
- ServiceProvider::boot() — Method in class ServiceProvider
Bootstrap the application events.
- $ ViewErrorBag#bags — Property in class ViewErrorBag
The array of the view error bags.
- BladeCompiler — Class in namespace Illuminate\View\Compilers
- Factory::buildClassEventCallback() — Method in class Factory
Build a class based container callback Closure.
- WorkbenchMakeCommand::buildPackage() — Method in class WorkbenchMakeCommand
Build the package details from user input.
- $ PackageCreator#basicBlocks — Property in class PackageCreator
The basic building blocks of the package.
- $ PackageCreator#blocks — Property in class PackageCreator
The building blocks of the package.
C
- $ IlluminateQueueClosure#crypt — Property in class IlluminateQueueClosure
The encrypter instance.
- AuthManager::createDriver() — Method in class AuthManager
Create a new driver instance.
- AuthManager::callCustomCreator() — Method in class AuthManager
Call a custom driver creator.
- AuthManager::createDatabaseDriver() — Method in class AuthManager
Create an instance of the database driver.
- AuthManager::createDatabaseProvider() — Method in class AuthManager
Create an instance of the database user provider.
- AuthManager::createEloquentDriver() — Method in class AuthManager
Create an instance of the Eloquent driver.
- AuthManager::createEloquentProvider() — Method in class AuthManager
Create an instance of the Eloquent user provider.
- ClearRemindersCommand — Class in namespace Illuminate\Auth\Console
- RemindersTableCommand::createBaseMigration() — Method in class RemindersTableCommand
Create a base migration file for the reminders.
- $ DatabaseUserProvider#conn — Property in class DatabaseUserProvider
The active database connection.
- EloquentUserProvider::createModel() — Method in class EloquentUserProvider
Create a new instance of the model.
- $ Guard#cookie — Property in class Guard
The Illuminate cookie creator service.
- Guard::check() — Method in class Guard
Determine if the current user is authenticated.
- Guard::createRecaller() — Method in class Guard
Create a remember me cookie for a given ID.
- Guard::clearUserDataFromStorage() — Method in class Guard
Remove the user data from the session and cookies.
- Guard::createRememberTokenIfDoesntExist() — Method in class Guard
Create a new remember token for the user if one doesn't already exist.
- $ DatabaseReminderRepository#connection — Property in class DatabaseReminderRepository
The database connection instance.
- DatabaseReminderRepository::create() — Method in class DatabaseReminderRepository
Create a new reminder record and token.
- DatabaseReminderRepository::createNewToken() — Method in class DatabaseReminderRepository
Create a new token for the user.
- ReminderRepositoryInterface::create() — Method in class ReminderRepositoryInterface
Create a new reminder record and token.
- CacheManager — Class in namespace Illuminate\Cache
- CacheManager::createApcDriver() — Method in class CacheManager
Create an instance of the APC cache driver.
- CacheManager::createArrayDriver() — Method in class CacheManager
Create an instance of the array cache driver.
- CacheManager::createFileDriver() — Method in class CacheManager
Create an instance of the file cache driver.
- CacheManager::createMemcachedDriver() — Method in class CacheManager
Create an instance of the Memcached cache driver.
- CacheManager::createNullDriver() — Method in class CacheManager
Create an instance of the Null cache driver.
- CacheManager::createWincacheDriver() — Method in class CacheManager
Create an instance of the WinCache cache driver.
- CacheManager::createXcacheDriver() — Method in class CacheManager
Create an instance of the XCache cache driver.
- CacheManager::createRedisDriver() — Method in class CacheManager
Create an instance of the Redis cache driver.
- CacheManager::createDatabaseDriver() — Method in class CacheManager
Create an instance of the database cache driver.
- CacheServiceProvider — Class in namespace Illuminate\Cache
- CacheTableCommand — Class in namespace Illuminate\Cache\Console
- CacheTableCommand::createBaseMigration() — Method in class CacheTableCommand
Create a base migration file for the table.
- ClearCommand — Class in namespace Illuminate\Cache\Console
- $ ClearCommand#cache — Property in class ClearCommand
The cache manager instance.
- $ DatabaseStore#connection — Property in class DatabaseStore
The database connection instance.
- FileStore::createCacheDirectory() — Method in class FileStore
Create the file cache directory if necessary.
- MemcachedConnector::connect() — Method in class MemcachedConnector
Create a new Memcached connection.
- $ RedisStore#connection — Property in class RedisStore
The Redis connection that should be used.
- RedisStore::connection() — Method in class RedisStore
Get the Redis connection instance.
- FileLoader::cascadePackage() — Method in class FileLoader
Apply any cascades to an array of package options.
- LoaderInterface::cascadePackage() — Method in class LoaderInterface
Apply any cascades to an array of package options.
- Repository::callAfterLoad() — Method in class Repository
Call the after load callback for a namespace.
- Application::call() — Method in class Application
Run an Artisan console command by name.
- Command — Class in namespace Illuminate\Console
- Command::call() — Method in class Command
Call another console command.
- Command::callSilent() — Method in class Command
Call another console command silently.
- Command::confirm() — Method in class Command
Confirm a question with the user.
- Command::choice() — Method in class Command
Give the user a single choice from an array of answers.
- Command::comment() — Method in class Command
Write a string as comment output.
- ConfirmableTrait — Class in namespace Illuminate\Console
- ConfirmableTrait::confirmToProceed() — Method in class ConfirmableTrait
Confirm before proceeding with the action
- Container — Class in namespace Illuminate\Container
- CookieJar — Class in namespace Illuminate\Cookie
- CookieServiceProvider — Class in namespace Illuminate\Cookie
- $ Queue#cookies — Property in class Queue
The cookie jar instance.
- Manager::connection() — Method in class Manager
Get a connection instance from the global manager.
- Connection — Class in namespace Illuminate\Database
- $ Connection#cache — Property in class Connection
The cache manager instance.
- $ Connection#config — Property in class Connection
The database connection configuration options.
- Connection::commit() — Method in class Connection
Commit the active database transaction.
- Connection::causedByLostConnection() — Method in class Connection
Determine if the given exception was caused by a lost connection.
- ConnectionInterface — Class in namespace Illuminate\Database
- ConnectionInterface::commit() — Method in class ConnectionInterface
Commit the active database transaction.
- ConnectionResolver — Class in namespace Illuminate\Database
- $ ConnectionResolver#connections — Property in class ConnectionResolver
All of the registered connections.
- ConnectionResolver::connection() — Method in class ConnectionResolver
Get a database connection instance.
- ConnectionResolverInterface — Class in namespace Illuminate\Database
- ConnectionResolverInterface::connection() — Method in class ConnectionResolverInterface
Get a database connection instance.
- ConnectionFactory — Class in namespace Illuminate\Database\Connectors
- $ ConnectionFactory#container — Property in class ConnectionFactory
The IoC container instance.
- ConnectionFactory::createSingleConnection() — Method in class ConnectionFactory
Create a single database connection instance.
- ConnectionFactory::createReadWriteConnection() — Method in class ConnectionFactory
Create a single database connection instance.
- ConnectionFactory::createReadPdo() — Method in class ConnectionFactory
Create a new PDO instance for reading.
- ConnectionFactory::createConnector() — Method in class ConnectionFactory
Create a connector instance based on the configuration.
- ConnectionFactory::createConnection() — Method in class ConnectionFactory
Create a new connection instance.
- Connector — Class in namespace Illuminate\Database\Connectors
- Connector::createConnection() — Method in class Connector
Create a new PDO connection.
- ConnectorInterface — Class in namespace Illuminate\Database\Connectors
- ConnectorInterface::connect() — Method in class ConnectorInterface
Establish a database connection.
- MySqlConnector::connect() — Method in class MySqlConnector
Establish a database connection.
- MySqlConnector::configHasSocket() — Method in class MySqlConnector
Determine if the given configuration array has a UNIX socket value.
- PostgresConnector::connect() — Method in class PostgresConnector
Establish a database connection.
- SQLiteConnector::connect() — Method in class SQLiteConnector
Establish a database connection.
- SqlServerConnector::connect() — Method in class SqlServerConnector
Establish a database connection.
- $ MigrateMakeCommand#creator — Property in class MigrateMakeCommand
The migration creator instance.
- $ DatabaseManager#connections — Property in class DatabaseManager
The active connection instances.
- DatabaseManager::connection() — Method in class DatabaseManager
Get a database connection instance.
- Builder::chunk() — Method in class Builder
Chunk the results of the query.
- Builder::callScope() — Method in class Builder
Call the given model scope on the underlying model.
- Collection — Class in namespace Illuminate\Database\Eloquent
- Collection::contains() — Method in class Collection
Determine if a key exists in the collection.
- $ Model#connection — Property in class Model
The connection name for the model.
- Model::create() — Method in class Model
Save a new model and return the instance.
- Model::creating() — Method in class Model
Register a creating model event with the dispatcher.
- Model::created() — Method in class Model
Register a created model event with the dispatcher.
- BelongsToMany::cleanPivotAttributes() — Method in class BelongsToMany
Get the pivot attributes from a model.
- BelongsToMany::create() — Method in class BelongsToMany
Create a new instance of the related model.
- BelongsToMany::createMany() — Method in class BelongsToMany
Create an array of new instances of the related models.
- BelongsToMany::createAttachRecords() — Method in class BelongsToMany
Create an array of records to insert into the pivot table.
- BelongsToMany::createAttachRecord() — Method in class BelongsToMany
Create a new pivot attachment record.
- HasOneOrMany::create() — Method in class HasOneOrMany
Create a new instance of the related model.
- HasOneOrMany::createMany() — Method in class HasOneOrMany
Create an array of new instances of the related model.
- MorphOneOrMany::create() — Method in class MorphOneOrMany
Create a new instance of the related model.
- MorphTo::createModelByType() — Method in class MorphTo
Create a new model instance by type.
- MorphToMany::createAttachRecord() — Method in class MorphToMany
Create a new pivot attachment record.
- $ Relation#constraints — Property in class Relation
Indicates if the relation is adding constraints.
- Relation::createdAt() — Method in class Relation
Get the name of the "created at" column.
- Grammar::columnize() — Method in class Grammar
Convert an array of column names into a delimited string.
- $ DatabaseMigrationRepository#connection — Property in class DatabaseMigrationRepository
The name of the database connection to use.
- DatabaseMigrationRepository::createRepository() — Method in class DatabaseMigrationRepository
Create the migration repository data store.
- $ Migration#connection — Property in class Migration
The name of the database connection to use.
- MigrationCreator::create() — Method in class MigrationCreator
Create a new migration at the given path.
- MigrationRepositoryInterface::createRepository() — Method in class MigrationRepositoryInterface
Create the migration repository data store.
- $ Migrator#connection — Property in class Migrator
The name of the default connection.
- $ Builder#connection — Property in class Builder
The database connection instance.
- $ Builder#columns — Property in class Builder
The columns that should be returned.
- $ Builder#cacheKey — Property in class Builder
The key that should be used when caching the query.
- $ Builder#cacheMinutes — Property in class Builder
The number of minutes to cache the query.
- $ Builder#cacheTags — Property in class Builder
The tags for the query cache.
- $ Builder#cacheDriver — Property in class Builder
The cache driver to be used.
- Builder::cacheTags() — Method in class Builder
Indicate that the results, if cached, should use the given cache tags.
- Builder::cacheDriver() — Method in class Builder
Indicate that the results, if cached, should use the given cache driver.
- Builder::chunk() — Method in class Builder
Chunk the results of the query.
- Builder::count() — Method in class Builder
Retrieve the "count" result of the query.
- Builder::cleanBindings() — Method in class Builder
Remove all of the expressions from a list of bindings.
- Grammar::compileSelect() — Method in class Grammar
Compile a select query into SQL.
- Grammar::compileComponents() — Method in class Grammar
Compile the components necessary for a select clause.
- Grammar::compileAggregate() — Method in class Grammar
Compile an aggregated select clause.
- Grammar::compileColumns() — Method in class Grammar
Compile the "select *" portion of the query.
- Grammar::compileFrom() — Method in class Grammar
Compile the "from" portion of the query.
- Grammar::compileJoins() — Method in class Grammar
Compile the "join" portions of the query.
- Grammar::compileJoinConstraint() — Method in class Grammar
Create a join clause constraint segment.
- Grammar::compileWheres() — Method in class Grammar
Compile the "where" portions of the query.
- Grammar::compileGroups() — Method in class Grammar
Compile the "group by" portions of the query.
- Grammar::compileHavings() — Method in class Grammar
Compile the "having" portions of the query.
- Grammar::compileHaving() — Method in class Grammar
Compile a single having clause.
- Grammar::compileBasicHaving() — Method in class Grammar
Compile a basic having clause.
- Grammar::compileOrders() — Method in class Grammar
Compile the "order by" portions of the query.
- Grammar::compileLimit() — Method in class Grammar
Compile the "limit" portions of the query.
- Grammar::compileOffset() — Method in class Grammar
Compile the "offset" portions of the query.
- Grammar::compileUnions() — Method in class Grammar
Compile the "union" queries attached to the main query.
- Grammar::compileUnion() — Method in class Grammar
Compile a single union statement.
- Grammar::compileInsert() — Method in class Grammar
Compile an insert statement into SQL.
- Grammar::compileInsertGetId() — Method in class Grammar
Compile an insert and get ID statement into SQL.
- Grammar::compileUpdate() — Method in class Grammar
Compile an update statement into SQL.
- Grammar::compileDelete() — Method in class Grammar
Compile a delete statement into SQL.
- Grammar::compileTruncate() — Method in class Grammar
Compile a truncate table statement into SQL.
- Grammar::compileLock() — Method in class Grammar
Compile the lock into SQL.
- Grammar::concatenate() — Method in class Grammar
Concatenate an array of segments, removing empties.
- MySqlGrammar::compileSelect() — Method in class MySqlGrammar
Compile a select query into SQL.
- MySqlGrammar::compileUnion() — Method in class MySqlGrammar
Compile a single union statement.
- MySqlGrammar::compileLock() — Method in class MySqlGrammar
Compile the lock into SQL.
- MySqlGrammar::compileUpdate() — Method in class MySqlGrammar
Compile an update statement into SQL.
- MySqlGrammar::compileDelete() — Method in class MySqlGrammar
Compile a delete statement into SQL.
- PostgresGrammar::compileLock() — Method in class PostgresGrammar
Compile the lock into SQL.
- PostgresGrammar::compileUpdate() — Method in class PostgresGrammar
Compile an update statement into SQL.
- PostgresGrammar::compileUpdateColumns() — Method in class PostgresGrammar
Compile the columns for the update statement.
- PostgresGrammar::compileUpdateFrom() — Method in class PostgresGrammar
Compile the "from" clause for an update with a join.
- PostgresGrammar::compileUpdateWheres() — Method in class PostgresGrammar
Compile the additional where clauses for updates with joins.
- PostgresGrammar::compileUpdateJoinWheres() — Method in class PostgresGrammar
Compile the "join" clauses for an update.
- PostgresGrammar::compileInsertGetId() — Method in class PostgresGrammar
Compile an insert and get ID statement into SQL.
- PostgresGrammar::compileTruncate() — Method in class PostgresGrammar
Compile a truncate table statement into SQL.
- SQLiteGrammar::compileInsert() — Method in class SQLiteGrammar
Compile an insert statement into SQL.
- SQLiteGrammar::compileTruncate() — Method in class SQLiteGrammar
Compile a truncate table statement into SQL.
- SqlServerGrammar::compileSelect() — Method in class SqlServerGrammar
Compile a select query into SQL.
- SqlServerGrammar::compileColumns() — Method in class SqlServerGrammar
Compile the "select *" portion of the query.
- SqlServerGrammar::compileFrom() — Method in class SqlServerGrammar
Compile the "from" portion of the query.
- SqlServerGrammar::compileAnsiOffset() — Method in class SqlServerGrammar
Create a full ANSI offset clause for the query.
- SqlServerGrammar::compileOver() — Method in class SqlServerGrammar
Compile the over statement for a table expression.
- SqlServerGrammar::compileRowConstraint() — Method in class SqlServerGrammar
Compile the limit / offset row constraint for a query.
- SqlServerGrammar::compileTableExpression() — Method in class SqlServerGrammar
Compile a common table expression for a query.
- SqlServerGrammar::compileLimit() — Method in class SqlServerGrammar
Compile the "limit" portions of the query.
- SqlServerGrammar::compileOffset() — Method in class SqlServerGrammar
Compile the "offset" portions of the query.
- SqlServerGrammar::compileTruncate() — Method in class SqlServerGrammar
Compile a truncate table statement into SQL.
- $ JoinClause#clauses — Property in class JoinClause
The "on" clauses for the join.
- $ Blueprint#columns — Property in class Blueprint
The columns that should be added to the table.
- $ Blueprint#commands — Property in class Blueprint
The commands that should be run for the table.
- Blueprint::creating() — Method in class Blueprint
Determine if the blueprint has a create command.
- Blueprint::create() — Method in class Blueprint
Indicate that the table needs to be created.
- Blueprint::char() — Method in class Blueprint
Create a new char column on the table.
- Blueprint::createIndexName() — Method in class Blueprint
Create a default index name for the table.
- Blueprint::createCommand() — Method in class Blueprint
Create a new Fluent command.
- $ Builder#connection — Property in class Builder
The database connection instance.
- Builder::create() — Method in class Builder
Create a new table on the schema.
- Builder::createBlueprint() — Method in class Builder
Create a new command set with a Closure.
- Grammar::compileRenameColumn() — Method in class Grammar
Compile a rename column command.
- Grammar::compileForeign() — Method in class Grammar
Compile a foreign key command.
- MySqlGrammar::compileTableExists() — Method in class MySqlGrammar
Compile the query to determine the list of tables.
- MySqlGrammar::compileColumnExists() — Method in class MySqlGrammar
Compile the query to determine the list of columns.
- MySqlGrammar::compileCreate() — Method in class MySqlGrammar
Compile a create table command.
- MySqlGrammar::compileCreateEncoding() — Method in class MySqlGrammar
Append the character set specifications to a command.
- MySqlGrammar::compileAdd() — Method in class MySqlGrammar
Compile an add column command.
- MySqlGrammar::compilePrimary() — Method in class MySqlGrammar
Compile a primary key command.
- MySqlGrammar::compileUnique() — Method in class MySqlGrammar
Compile a unique key command.
- MySqlGrammar::compileIndex() — Method in class MySqlGrammar
Compile a plain index key command.
- MySqlGrammar::compileKey() — Method in class MySqlGrammar
Compile an index creation command.
- MySqlGrammar::compileDrop() — Method in class MySqlGrammar
Compile a drop table command.
- MySqlGrammar::compileDropIfExists() — Method in class MySqlGrammar
Compile a drop table (if exists) command.
- MySqlGrammar::compileDropColumn() — Method in class MySqlGrammar
Compile a drop column command.
- MySqlGrammar::compileDropPrimary() — Method in class MySqlGrammar
Compile a drop primary key command.
- MySqlGrammar::compileDropUnique() — Method in class MySqlGrammar
Compile a drop unique key command.
- MySqlGrammar::compileDropIndex() — Method in class MySqlGrammar
Compile a drop index command.
- MySqlGrammar::compileDropForeign() — Method in class MySqlGrammar
Compile a drop foreign key command.
- MySqlGrammar::compileRename() — Method in class MySqlGrammar
Compile a rename table command.
- PostgresGrammar::compileTableExists() — Method in class PostgresGrammar
Compile the query to determine if a table exists.
- PostgresGrammar::compileColumnExists() — Method in class PostgresGrammar
Compile the query to determine the list of columns.
- PostgresGrammar::compileCreate() — Method in class PostgresGrammar
Compile a create table command.
- PostgresGrammar::compileAdd() — Method in class PostgresGrammar
Compile a create table command.
- PostgresGrammar::compilePrimary() — Method in class PostgresGrammar
Compile a primary key command.
- PostgresGrammar::compileUnique() — Method in class PostgresGrammar
Compile a unique key command.
- PostgresGrammar::compileIndex() — Method in class PostgresGrammar
Compile a plain index key command.
- PostgresGrammar::compileDrop() — Method in class PostgresGrammar
Compile a drop table command.
- PostgresGrammar::compileDropIfExists() — Method in class PostgresGrammar
Compile a drop table (if exists) command.
- PostgresGrammar::compileDropColumn() — Method in class PostgresGrammar
Compile a drop column command.
- PostgresGrammar::compileDropPrimary() — Method in class PostgresGrammar
Compile a drop primary key command.
- PostgresGrammar::compileDropUnique() — Method in class PostgresGrammar
Compile a drop unique key command.
- PostgresGrammar::compileDropIndex() — Method in class PostgresGrammar
Compile a drop index command.
- PostgresGrammar::compileDropForeign() — Method in class PostgresGrammar
Compile a drop foreign key command.
- PostgresGrammar::compileRename() — Method in class PostgresGrammar
Compile a rename table command.
- SQLiteGrammar::compileTableExists() — Method in class SQLiteGrammar
Compile the query to determine if a table exists.
- SQLiteGrammar::compileColumnExists() — Method in class SQLiteGrammar
Compile the query to determine the list of columns.
- SQLiteGrammar::compileCreate() — Method in class SQLiteGrammar
Compile a create table command.
- SQLiteGrammar::compileAdd() — Method in class SQLiteGrammar
Compile alter table commands for adding columns
- SQLiteGrammar::compileUnique() — Method in class SQLiteGrammar
Compile a unique key command.
- SQLiteGrammar::compileIndex() — Method in class SQLiteGrammar
Compile a plain index key command.
- SQLiteGrammar::compileForeign() — Method in class SQLiteGrammar
Compile a foreign key command.
- SQLiteGrammar::compileDrop() — Method in class SQLiteGrammar
Compile a drop table command.
- SQLiteGrammar::compileDropIfExists() — Method in class SQLiteGrammar
Compile a drop table (if exists) command.
- SQLiteGrammar::compileDropColumn() — Method in class SQLiteGrammar
Compile a drop column command.
- SQLiteGrammar::compileDropUnique() — Method in class SQLiteGrammar
Compile a drop unique key command.
- SQLiteGrammar::compileDropIndex() — Method in class SQLiteGrammar
Compile a drop index command.
- SQLiteGrammar::compileRename() — Method in class SQLiteGrammar
Compile a rename table command.
- SqlServerGrammar::compileTableExists() — Method in class SqlServerGrammar
Compile the query to determine if a table exists.
- SqlServerGrammar::compileColumnExists() — Method in class SqlServerGrammar
Compile the query to determine the list of columns.
- SqlServerGrammar::compileCreate() — Method in class SqlServerGrammar
Compile a create table command.
- SqlServerGrammar::compileAdd() — Method in class SqlServerGrammar
Compile a create table command.
- SqlServerGrammar::compilePrimary() — Method in class SqlServerGrammar
Compile a primary key command.
- SqlServerGrammar::compileUnique() — Method in class SqlServerGrammar
Compile a unique key command.
- SqlServerGrammar::compileIndex() — Method in class SqlServerGrammar
Compile a plain index key command.
- SqlServerGrammar::compileDrop() — Method in class SqlServerGrammar
Compile a drop table command.
- SqlServerGrammar::compileDropColumn() — Method in class SqlServerGrammar
Compile a drop column command.
- SqlServerGrammar::compileDropPrimary() — Method in class SqlServerGrammar
Compile a drop primary key command.
- SqlServerGrammar::compileDropUnique() — Method in class SqlServerGrammar
Compile a drop unique key command.
- SqlServerGrammar::compileDropIndex() — Method in class SqlServerGrammar
Compile a drop index command.
- SqlServerGrammar::compileDropForeign() — Method in class SqlServerGrammar
Compile a drop foreign key command.
- SqlServerGrammar::compileRename() — Method in class SqlServerGrammar
Compile a rename table command.
- $ Seeder#container — Property in class Seeder
The container instance.
- $ Seeder#command — Property in class Seeder
The console command instance.
- Seeder::call() — Method in class Seeder
Seed the given connection from the given path.
- $ Encrypter#cipher — Property in class Encrypter
The algorithm used for encryption.
- $ Dispatcher#container — Property in class Dispatcher
The IoC container instance.
- Dispatcher::createClassListener() — Method in class Dispatcher
Create a class based listener using the IoC container.
- Handler::callCustomHandlers() — Method in class Handler
Handle the given exception.
- Filesystem::copy() — Method in class Filesystem
Copy a file to a new location.
- Filesystem::copyDirectory() — Method in class Filesystem
Copy a directory from one location to another.
- Filesystem::cleanDirectory() — Method in class Filesystem
Empty the specified directory of all files and folders.
- Application::createNewRequest() — Method in class Application
Create a new request instance from the request class.
- Application::callFinishCallbacks() — Method in class Application
Call the "finish" callbacks assigned to the application.
- Composer — Class in namespace Illuminate\Foundation
- ConfigPublisher — Class in namespace Illuminate\Foundation
- $ AutoloadCommand#composer — Property in class AutoloadCommand
The composer instance.
- ChangesCommand — Class in namespace Illuminate\Foundation\Console
- ClearCompiledCommand — Class in namespace Illuminate\Foundation\Console
- CommandMakeCommand — Class in namespace Illuminate\Foundation\Console
- ConfigPublishCommand — Class in namespace Illuminate\Foundation\Console
- $ ConfigPublishCommand#config — Property in class ConfigPublishCommand
The config publisher instance.
- $ OptimizeCommand#composer — Property in class OptimizeCommand
The composer instance.
- OptimizeCommand::compileClasses() — Method in class OptimizeCommand
Generate the compiled class file.
- OptimizeCommand::compileViews() — Method in class OptimizeCommand
Compile all view files.
- ServeCommand::checkPhpVersion() — Method in class ServeCommand
Check the current PHP version is >= 5.4.
- ProviderRepository::compileManifest() — Method in class ProviderRepository
Compile the application manifest file.
- ProviderRepository::createProvider() — Method in class ProviderRepository
Create a new provider instance.
- CommandCreatorServiceProvider — Class in namespace Illuminate\Foundation\Providers
- ComposerServiceProvider — Class in namespace Illuminate\Foundation\Providers
- ConsoleSupportServiceProvider — Class in namespace Illuminate\Foundation\Providers
- $ ApplicationTrait#client — Property in class ApplicationTrait
The HttpKernel client instance.
- ApplicationTrait::call() — Method in class ApplicationTrait
Call the given URI and return the Response.
- ApplicationTrait::callSecure() — Method in class ApplicationTrait
Call the given HTTPS URI and return the Response.
- ApplicationTrait::createClient() — Method in class ApplicationTrait
Create a new HttpKernel client instance.
- Client — Class in namespace Illuminate\Foundation\Testing
- TestCase::createApplication() — Method in class TestCase
Creates the application.
- BcryptHasher::check() — Method in class BcryptHasher
Check the given plain value against a hash.
- HasherInterface::check() — Method in class HasherInterface
Check the given plain value against a hash.
- $ FormBuilder#csrfToken — Property in class FormBuilder
The CSRF token used by the form builder.
- FormBuilder::close() — Method in class FormBuilder
Close the current form.
- FormBuilder::checkbox() — Method in class FormBuilder
Create a checkbox input field.
- FormBuilder::checkable() — Method in class FormBuilder
Create a checkable input field.
- Request::cookie() — Method in class Request
Retrieve a cookie from the request.
- Request::createFromBase() — Method in class Request
Create an Illuminate request from a Symfony instance.
- Writer::callMonolog() — Method in class Writer
Call Monolog with the given method and parameters.
- $ Mailer#container — Property in class Mailer
The IoC container instance.
- Mailer::callMessageBuilder() — Method in class Mailer
Call the provided message builder.
- Mailer::createMessage() — Method in class Mailer
Create a new message instance.
- Message::cc() — Method in class Message
Add a carbon copy to the message.
- Message::createAttachmentFromPath() — Method in class Message
Create a Swift Attachment instance.
- Message::createAttachmentFromData() — Method in class Message
Create a Swift Attachment instance from data.
- $ Factory#currentPage — Property in class Factory
The number of the current page.
- $ Paginator#currentPage — Property in class Paginator
Get the current page for the request.
- Paginator::calculateCurrentAndLastPages() — Method in class Paginator
Calculate the current and last pages for this instance.
- Paginator::calculateItemRanges() — Method in class Paginator
Calculate the first and last item number for this instance.
- Paginator::calculateCurrentPage() — Method in class Paginator
Get the current page for the request.
- Paginator::count() — Method in class Paginator
Get the number of items for the current page.
- $ Presenter#currentPage — Property in class Presenter
The current page of the paginator.
- Manager::connection() — Method in class Manager
Get a connection instance from the global manager.
- BeanstalkdConnector::connect() — Method in class BeanstalkdConnector
Establish a queue connection.
- ConnectorInterface — Class in namespace Illuminate\Queue\Connectors
- ConnectorInterface::connect() — Method in class ConnectorInterface
Establish a queue connection.
- $ IronConnector#crypt — Property in class IronConnector
The encrypter instance.
- IronConnector::connect() — Method in class IronConnector
Establish a queue connection.
- $ RedisConnector#connection — Property in class RedisConnector
The connection name.
- RedisConnector::connect() — Method in class RedisConnector
Establish a queue connection.
- SqsConnector::connect() — Method in class SqsConnector
Establish a queue connection.
- SyncConnector::connect() — Method in class SyncConnector
Establish a queue connection.
- FailedTableCommand::createBaseMigration() — Method in class FailedTableCommand
Create a base migration file for the table.
- IronQueue::createPushedIronJob() — Method in class IronQueue
Create a new IronJob for a pushed job.
- IronQueue::createPayload() — Method in class IronQueue
Create a payload string from the given job and data.
- $ Job#container — Property in class Job
The IoC container instance.
- $ Listener#commandPath — Property in class Listener
The command working path.
- $ Queue#container — Property in class Queue
The IoC container instance.
- Queue::createPayload() — Method in class Queue
Create a payload string from the given job and data.
- Queue::createClosurePayload() — Method in class Queue
Create a payload string for the given Closure job.
- $ QueueManager#connections — Property in class QueueManager
The array of resolved queue connections.
- QueueManager::connected() — Method in class QueueManager
Determine if the driver is connected.
- QueueManager::connection() — Method in class QueueManager
Resolve a queue connection instance.
- $ RedisQueue#connection — Property in class RedisQueue
The connection name.
- RedisQueue::createPayload() — Method in class RedisQueue
Create a payload string from the given job and data.
- $ Worker#cache — Property in class Worker
The cache repository implementation.
- $ Database#clients — Property in class Database
The host address of the database.
- Database::createAggregateClient() — Method in class Database
Create a new aggregate client supporting sharding.
- Database::createSingleClients() — Method in class Database
Create an array of single connection clients.
- Database::connection() — Method in class Database
Get a specific Redis connection instance.
- Database::command() — Method in class Database
Run a command against the Redis database.
- Connection — Class in namespace Illuminate\Remote
- ConnectionInterface — Class in namespace Illuminate\Remote
- GatewayInterface::connect() — Method in class GatewayInterface
Connect to the SSH server.
- GatewayInterface::connected() — Method in class GatewayInterface
Determine if the gateway is connected.
- $ MultiConnection#connections — Property in class MultiConnection
All of the active server connections.
- RemoteManager::connection() — Method in class RemoteManager
Get a remote connection instance.
- $ SecLibGateway#connection — Property in class SecLibGateway
The SecLib connection instance.
- SecLibGateway::connect() — Method in class SecLibGateway
Connect to the SSH server.
- SecLibGateway::connected() — Method in class SecLibGateway
Determine if the gateway is connected.
- Controller — Class in namespace Illuminate\Routing
- Controller::callAction() — Method in class Controller
Execute an action on the controller.
- ControllerDispatcher — Class in namespace Illuminate\Routing
- $ ControllerDispatcher#container — Property in class ControllerDispatcher
The IoC container instance.
- ControllerDispatcher::call() — Method in class ControllerDispatcher
Call the given controller instance method.
- ControllerDispatcher::callFilter() — Method in class ControllerDispatcher
Call the given controller filter method.
- ControllerInspector — Class in namespace Illuminate\Routing
- ControllerServiceProvider — Class in namespace Illuminate\Routing
- ControllerGenerator — Class in namespace Illuminate\Routing\Generators
- Redirector::createRedirect() — Method in class Redirector
Create a new redirect response.
- $ Route#compiled — Property in class Route
The compiled version of the route.
- Route::compileRoute() — Method in class Route
Compile the route into a Symfony CompiledRoute instance.
- Route::compileParameterNames() — Method in class Route
Get the parameter names for the route.
- RouteCollection::checkForAlternateVerbs() — Method in class RouteCollection
Determine if any routes match on another HTTP verb.
- RouteCollection::check() — Method in class RouteCollection
Determine if a route in the array matches the request.
- RouteCollection::count() — Method in class RouteCollection
Count the number of items in the collection.
- RouteFiltererInterface::callRouteFilter() — Method in class RouteFiltererInterface
Call the given route filter.
- $ Router#container — Property in class Router
The IoC container instance.
- $ Router#current — Property in class Router
The currently dispatched route instance.
- $ Router#currentRequest — Property in class Router
The request currently being dispatched.
- $ Router#controllerDispatcher — Property in class Router
The controller dispatcher instance.
- Router::controllers() — Method in class Router
Register an array of controllers with wildcard routing.
- Router::controller() — Method in class Router
Route a controller to a URI with wildcard routing.
- Router::createRoute() — Method in class Router
Create a new route instance.
- Router::createClassBinding() — Method in class Router
Create a class based binding using the IoC container.
- Router::callFilter() — Method in class Router
Call the given filter with the request and response.
- Router::callRouteBefore() — Method in class Router
Call the given route's before filters.
- Router::callPatternFilters() — Method in class Router
Call the pattern based filters for the request.
- Router::callAttachedBefores() — Method in class Router
Call the given route's before (non-pattern) filters.
- Router::callRouteAfter() — Method in class Router
Call the given route's before filters.
- Router::callRouteFilter() — Method in class Router
Call the given route filter.
- Router::cleanFilterParameters() — Method in class Router
Clean the parameters being passed to a filter callback.
- Router::current() — Method in class Router
Get the currently dispatched route instance.
- Router::currentRouteName() — Method in class Router
Get the current route name.
- Router::currentRouteNamed() — Method in class Router
Determine if the current route matches a given name.
- Router::currentRouteAction() — Method in class Router
Get the current route action.
- Router::currentRouteUses() — Method in class Router
Determine if the current route action matches a given action.
- UrlGenerator::current() — Method in class UrlGenerator
Get the current URL for the request.
- CacheBasedSessionHandler — Class in namespace Illuminate\Session
- $ CacheBasedSessionHandler#cache — Property in class CacheBasedSessionHandler
The cache repository instance.
- CacheBasedSessionHandler::close() — Method in class CacheBasedSessionHandler
- {@inheritDoc}
- CommandsServiceProvider — Class in namespace Illuminate\Session
- SessionTableCommand::createBaseMigration() — Method in class SessionTableCommand
Create a base migration file for the session.
- CookieSessionHandler — Class in namespace Illuminate\Session
- $ CookieSessionHandler#cookie — Property in class CookieSessionHandler
The cookie jar instance.
- CookieSessionHandler::close() — Method in class CookieSessionHandler
- {@inheritDoc}
- $ DatabaseSessionHandler#connection — Property in class DatabaseSessionHandler
The database connection instance.
- DatabaseSessionHandler::close() — Method in class DatabaseSessionHandler
- {@inheritDoc}
- FileSessionHandler::close() — Method in class FileSessionHandler
- {@inheritDoc}
- Middleware::checkRequestForArraySessions() — Method in class Middleware
Check the request and reject callback for array sessions.
- Middleware::closeSession() — Method in class Middleware
Close the session handling for the request.
- Middleware::collectGarbage() — Method in class Middleware
Remove the garbage from the session if necessary.
- Middleware::configHitsLottery() — Method in class Middleware
Determine if the configuration odds hit the lottery.
- SessionManager::callCustomCreator() — Method in class SessionManager
Call a custom driver creator.
- SessionManager::createArrayDriver() — Method in class SessionManager
Create an instance of the "array" session driver.
- SessionManager::createCookieDriver() — Method in class SessionManager
Create an instance of the "cookie" session driver.
- SessionManager::createFileDriver() — Method in class SessionManager
Create an instance of the file session driver.
- SessionManager::createNativeDriver() — Method in class SessionManager
Create an instance of the file session driver.
- SessionManager::createDatabaseDriver() — Method in class SessionManager
Create an instance of the database session driver.
- SessionManager::createApcDriver() — Method in class SessionManager
Create an instance of the APC session driver.
- SessionManager::createMemcachedDriver() — Method in class SessionManager
Create an instance of the Memcached session driver.
- SessionManager::createWincacheDriver() — Method in class SessionManager
Create an instance of the Wincache session driver.
- SessionManager::createRedisDriver() — Method in class SessionManager
Create an instance of the Redis session driver.
- SessionManager::createCacheBased() — Method in class SessionManager
Create an instance of a cache driven driver.
- SessionManager::createCacheHandler() — Method in class SessionManager
Create the cache based session handler instance.
- Store::clear() — Method in class Store
- {@inheritdoc}
- ClassLoader — Class in namespace Illuminate\Support
- Collection — Class in namespace Illuminate\Support
- Collection::collapse() — Method in class Collection
Collapse the collection items into a single array.
- Collection::contains() — Method in class Collection
Determine if an item exists in the collection.
- Collection::chunk() — Method in class Collection
Chunk the underlying collection array.
- Collection::count() — Method in class Collection
Count the number of items in the collection.
- Cache — Class in namespace Illuminate\Support\Facades
- Config — Class in namespace Illuminate\Support\Facades
- Cookie — Class in namespace Illuminate\Support\Facades
- Crypt — Class in namespace Illuminate\Support\Facades
- Facade::createFreshMockInstance() — Method in class Facade
Create a fresh mock instance for the given class.
- Facade::createMockByName() — Method in class Facade
Create a fresh mock instance for the given class.
- Facade::clearResolvedInstance() — Method in class Facade
Clear a resolved facade instance.
- Facade::clearResolvedInstances() — Method in class Facade
Clear all of the resolved instances.
- Schema::connection() — Method in class Schema
Get a schema builder instance for a connection.
- $ Manager#customCreators — Property in class Manager
The registered custom driver creators.
- Manager::createDriver() — Method in class Manager
Create a new driver instance.
- Manager::callCustomCreator() — Method in class Manager
Call a custom driver creator.
- MessageBag::checkFormat() — Method in class MessageBag
Get the appropriate format based on the given format.
- MessageBag::count() — Method in class MessageBag
Get the number of messages in the container.
- $ SerializableClosure#code — Property in class SerializableClosure
The code for the closure
- ServiceProvider::commands() — Method in class ServiceProvider
Register the package's custom Artisan commands.
- $ Str#camelCache — Property in class Str
The cache of camel-cased words.
- Str::camel() — Method in class Str
Convert a value to camel case.
- Str::contains() — Method in class Str
Determine if a given string contains a given substring.
- CapsuleManagerTrait — Class in namespace Illuminate\Support\Traits
- $ CapsuleManagerTrait#container — Property in class CapsuleManagerTrait
The container instance.
- ViewErrorBag::count() — Method in class ViewErrorBag
Get the number of messages in the default bag.
- Translator::choice() — Method in class Translator
Get a translation according to an integer value.
- $ DatabasePresenceVerifier#connection — Property in class DatabasePresenceVerifier
The database connection to use.
- $ Factory#container — Property in class Factory
The IoC container instance.
- $ Validator#customMessages — Property in class Validator
The array of custom error messages.
- $ Validator#customAttributes — Property in class Validator
The array of custom attribute names.
- $ Validator#customValues — Property in class Validator
The array of custom displayabled values.
- Validator::checkDateTimeOrder() — Method in class Validator
Given two date/time strings, check that one is after the other.
- Validator::callExtension() — Method in class Validator
Call a custom validator extension.
- Validator::callClassBasedExtension() — Method in class Validator
Call a class based validator extension.
- Validator::callReplacer() — Method in class Validator
Call a custom validator message replacer.
- Validator::callClassBasedReplacer() — Method in class Validator
Call a class based validator message replacer.
- $ BladeCompiler#compilers — Property in class BladeCompiler
All of the available compiler functions.
- $ BladeCompiler#contentTags — Property in class BladeCompiler
Array of opening and closing tags for escaped echos.
- BladeCompiler::compile() — Method in class BladeCompiler
Compile the view at the given path.
- BladeCompiler::compileString() — Method in class BladeCompiler
Compile the given Blade template contents.
- BladeCompiler::compileExtensions() — Method in class BladeCompiler
Execute the user defined extensions.
- BladeCompiler::compileComments() — Method in class BladeCompiler
Compile Blade comments into valid PHP.
- BladeCompiler::compileEchos() — Method in class BladeCompiler
Compile Blade echos into valid PHP.
- BladeCompiler::compileStatements() — Method in class BladeCompiler
Compile Blade Statements that start with "@"
- BladeCompiler::compileRegularEchos() — Method in class BladeCompiler
Compile the "regular" echo statements.
- BladeCompiler::compileEscapedEchos() — Method in class BladeCompiler
Compile the escaped echo statements.
- BladeCompiler::compileEchoDefaults() — Method in class BladeCompiler
Compile the default values for the echo statement.
- BladeCompiler::compileEach() — Method in class BladeCompiler
Compile the each statements into valid PHP.
- BladeCompiler::compileYield() — Method in class BladeCompiler
Compile the yield statements into valid PHP.
- BladeCompiler::compileShow() — Method in class BladeCompiler
Compile the show statements into valid PHP.
- BladeCompiler::compileSection() — Method in class BladeCompiler
Compile the section statements into valid PHP.
- BladeCompiler::compileAppend() — Method in class BladeCompiler
Compile the append statements into valid PHP.
- BladeCompiler::compileEndsection() — Method in class BladeCompiler
Compile the end-section statements into valid PHP.
- BladeCompiler::compileStop() — Method in class BladeCompiler
Compile the stop statements into valid PHP.
- BladeCompiler::compileOverwrite() — Method in class BladeCompiler
Compile the overwrite statements into valid PHP.
- BladeCompiler::compileUnless() — Method in class BladeCompiler
Compile the unless statements into valid PHP.
- BladeCompiler::compileEndunless() — Method in class BladeCompiler
Compile the end unless statements into valid PHP.
- BladeCompiler::compileLang() — Method in class BladeCompiler
Compile the lang statements into valid PHP.
- BladeCompiler::compileChoice() — Method in class BladeCompiler
Compile the choice statements into valid PHP.
- BladeCompiler::compileElse() — Method in class BladeCompiler
Compile the else statements into valid PHP.
- BladeCompiler::compileFor() — Method in class BladeCompiler
Compile the for statements into valid PHP.
- BladeCompiler::compileForeach() — Method in class BladeCompiler
Compile the foreach statements into valid PHP.
- BladeCompiler::compileForelse() — Method in class BladeCompiler
Compile the forelse statements into valid PHP.
- BladeCompiler::compileIf() — Method in class BladeCompiler
Compile the if statements into valid PHP.
- BladeCompiler::compileElseif() — Method in class BladeCompiler
Compile the else-if statements into valid PHP.
- BladeCompiler::compileEmpty() — Method in class BladeCompiler
Compile the forelse statements into valid PHP.
- BladeCompiler::compileWhile() — Method in class BladeCompiler
Compile the while statements into valid PHP.
- BladeCompiler::compileEndwhile() — Method in class BladeCompiler
Compile the end-while statements into valid PHP.
- BladeCompiler::compileEndfor() — Method in class BladeCompiler
Compile the end-for statements into valid PHP.
- BladeCompiler::compileEndforeach() — Method in class BladeCompiler
Compile the end-for-each statements into valid PHP.
- BladeCompiler::compileEndif() — Method in class BladeCompiler
Compile the end-if statements into valid PHP.
- BladeCompiler::compileEndforelse() — Method in class BladeCompiler
Compile the end-for-else statements into valid PHP.
- BladeCompiler::compileExtends() — Method in class BladeCompiler
Compile the extends statements into valid PHP.
- BladeCompiler::compileInclude() — Method in class BladeCompiler
Compile the include statements into valid PHP.
- BladeCompiler::compileStack() — Method in class BladeCompiler
Compile the stack statements into the content
- BladeCompiler::compilePush() — Method in class BladeCompiler
Compile the push statements into valid PHP.
- BladeCompiler::compileEndpush() — Method in class BladeCompiler
Compile the endpush statements into valid PHP.
- BladeCompiler::createMatcher() — Method in class BladeCompiler
Get the regular expression for a generic Blade function.
- BladeCompiler::createOpenMatcher() — Method in class BladeCompiler
Get the regular expression for a generic Blade function.
- BladeCompiler::createPlainMatcher() — Method in class BladeCompiler
Create a plain Blade matcher.
- Compiler — Class in namespace Illuminate\View\Compilers
- $ Compiler#cachePath — Property in class Compiler
Get the cache path for the compiled views.
- CompilerInterface — Class in namespace Illuminate\View\Compilers
- CompilerInterface::compile() — Method in class CompilerInterface
Compile the view at the given path.
- CompilerEngine — Class in namespace Illuminate\View\Engines
- $ CompilerEngine#compiler — Property in class CompilerEngine
The Blade compiler instance.
- $ Factory#container — Property in class Factory
The IoC container instance.
- $ Factory#composers — Property in class Factory
The view composer events.
- Factory::creator() — Method in class Factory
Register a view creator event.
- Factory::composers() — Method in class Factory
Register multiple view composers via an array.
- Factory::composer() — Method in class Factory
Register a view composer event.
- Factory::callComposer() — Method in class Factory
Call the composer for a given view.
- Factory::callCreator() — Method in class Factory
Call the creator for a given view.
- $ WorkbenchMakeCommand#creator — Property in class WorkbenchMakeCommand
The package creator instance.
- WorkbenchMakeCommand::callComposerUpdate() — Method in class WorkbenchMakeCommand
Call the composer update routine on the path.
- PackageCreator::create() — Method in class PackageCreator
Create a new package stub.
- PackageCreator::createWithResources() — Method in class PackageCreator
Create a package with all resource directories.
- PackageCreator::createClassDirectory() — Method in class PackageCreator
Create the main source directory for the package.
- PackageCreator::createDirectory() — Method in class PackageCreator
Create a workbench directory for the package.
D
- $ AuthServiceProvider#defer — Property in class AuthServiceProvider
Indicates if loading of the provider is deferred.
- $ ClearRemindersCommand#description — Property in class ClearRemindersCommand
The console command description.
- $ RemindersControllerCommand#description — Property in class RemindersControllerCommand
The console command description.
- $ RemindersTableCommand#description — Property in class RemindersTableCommand
The console command description.
- DatabaseUserProvider — Class in namespace Illuminate\Auth
- DatabaseReminderRepository — Class in namespace Illuminate\Auth\Reminders
- DatabaseReminderRepository::deleteExisting() — Method in class DatabaseReminderRepository
Delete all existing reset tokens from the database.
- DatabaseReminderRepository::delete() — Method in class DatabaseReminderRepository
Delete a reminder record by token.
- DatabaseReminderRepository::deleteExpired() — Method in class DatabaseReminderRepository
Delete expired reminders.
- ReminderRepositoryInterface::delete() — Method in class ReminderRepositoryInterface
Delete a reminder record by token.
- ReminderRepositoryInterface::deleteExpired() — Method in class ReminderRepositoryInterface
Delete expired reminders.
- $ ReminderServiceProvider#defer — Property in class ReminderServiceProvider
Indicates if loading of the provider is deferred.
- ApcStore::decrement() — Method in class ApcStore
Decrement the value of an item in the cache.
- ApcWrapper::decrement() — Method in class ApcWrapper
Decrement the value of an item in the cache.
- ApcWrapper::delete() — Method in class ApcWrapper
Remove an item from the cache.
- ArrayStore::decrement() — Method in class ArrayStore
Increment the value of an item in the cache.
- $ CacheServiceProvider#defer — Property in class CacheServiceProvider
Indicates if loading of the provider is deferred.
- $ CacheTableCommand#description — Property in class CacheTableCommand
The console command description.
- $ ClearCommand#description — Property in class ClearCommand
The console command description.
- DatabaseStore — Class in namespace Illuminate\Cache
- DatabaseStore::decrement() — Method in class DatabaseStore
Increment the value of an item in the cache.
- $ FileStore#directory — Property in class FileStore
The file cache directory
- FileStore::decrement() — Method in class FileStore
Decrement the value of an item in the cache.
- MemcachedStore::decrement() — Method in class MemcachedStore
Decrement the value of an item in the cache.
- NullStore::decrement() — Method in class NullStore
Increment the value of an item in the cache.
- RedisStore::decrement() — Method in class RedisStore
Increment the value of an item in the cache.
- RedisTaggedCache::deleteForeverKeys() — Method in class RedisTaggedCache
Delete all of the items that were stored forever.
- RedisTaggedCache::deleteForeverValues() — Method in class RedisTaggedCache
Delete all of the keys that have been stored forever.
- $ Repository#default — Property in class Repository
The default number of minutes to store items.
- StoreInterface::decrement() — Method in class StoreInterface
Decrement the value of an item in the cache.
- TaggedCache::decrement() — Method in class TaggedCache
Increment the value of an item in the cache.
- WinCacheStore::decrement() — Method in class WinCacheStore
Increment the value of an item in the cache.
- XCacheStore::decrement() — Method in class XCacheStore
Increment the value of an item in the cache.
- $ FileLoader#defaultPath — Property in class FileLoader
The default configuration path.
- $ Command#description — Property in class Command
The console command description.
- Container::dropStaleInstances() — Method in class Container
Drop all of the stale instances and aliases.
- $ CookieJar#domain — Property in class CookieJar
The default domain (if specified).
- Guard::decrypt() — Method in class Guard
Decrypt the cookies on the request.
- Guard::decryptCookie() — Method in class Guard
Decrypt the given cookie and return the value.
- Guard::decryptArray() — Method in class Guard
Decrypt an array based cookie.
- Guard::duplicate() — Method in class Guard
Duplicate a cookie with a new value.
- $ Connection#database — Property in class Connection
The name of the connected database.
- Connection::delete() — Method in class Connection
Run a delete statement against the database.
- Connection::disconnect() — Method in class Connection
Disconnect from the underlying PDO connection.
- Connection::disableQueryLog() — Method in class Connection
Disable the query log on the connection.
- ConnectionInterface::delete() — Method in class ConnectionInterface
Run a delete statement against the database.
- $ ConnectionResolver#default — Property in class ConnectionResolver
The default connection name.
- $ InstallCommand#description — Property in class InstallCommand
The console command description.
- $ MigrateCommand#description — Property in class MigrateCommand
The console command description.
- $ MigrateMakeCommand#description — Property in class MigrateMakeCommand
The console command description.
- $ RefreshCommand#description — Property in class RefreshCommand
The console command description.
- $ ResetCommand#description — Property in class ResetCommand
The console command description.
- $ RollbackCommand#description — Property in class RollbackCommand
The console command description.
- $ SeedCommand#description — Property in class SeedCommand
The console command description.
- DatabaseManager — Class in namespace Illuminate\Database
- DatabaseManager::disconnect() — Method in class DatabaseManager
Disconnect from the given database.
- DatabaseServiceProvider — Class in namespace Illuminate\Database
- Builder::decrement() — Method in class Builder
Decrement a column's value by a given amount.
- Builder::delete() — Method in class Builder
Delete a record from the database.
- Builder::doesntHave() — Method in class Builder
Add a relationship count condition to the query.
- Collection::diff() — Method in class Collection
Diff the collection with the given items.
- $ Model#dates — Property in class Model
The attributes that should be mutated to dates.
- $ Model#dispatcher — Property in class Model
The event dispatcher instance.
- Model::destroy() — Method in class Model
Destroy the models for the given IDs.
- Model::delete() — Method in class Model
Delete the model from the database.
- Model::deleting() — Method in class Model
Register a deleting model event with the dispatcher.
- Model::deleted() — Method in class Model
Register a deleted model event with the dispatcher.
- Model::decrement() — Method in class Model
Decrement a column's value by a given amount.
- BelongsTo::dissociate() — Method in class BelongsTo
Dissociate previously associated model from the given parent.
- BelongsToMany::detach() — Method in class BelongsToMany
Detach models from the relationship.
- MorphPivot::delete() — Method in class MorphPivot
Delete the pivot model record from the database.
- $ MorphTo#dictionary — Property in class MorphTo
All of the models keyed by ID.
- Pivot::delete() — Method in class Pivot
Delete the pivot model record from the database.
- $ MigrationServiceProvider#defer — Property in class MigrationServiceProvider
Indicates if loading of the provider is deferred.
- DatabaseMigrationRepository — Class in namespace Illuminate\Database\Migrations
- DatabaseMigrationRepository::delete() — Method in class DatabaseMigrationRepository
Remove a migration from the log.
- MigrationRepositoryInterface::delete() — Method in class MigrationRepositoryInterface
Remove a migration from the log.
- $ Builder#distinct — Property in class Builder
Indicates if the query returns distinct results.
- Builder::distinct() — Method in class Builder
Force the query to only return distinct results.
- Builder::dynamicWhere() — Method in class Builder
Handles dynamic "where" clauses to the query.
- Builder::decrement() — Method in class Builder
Decrement a column's value by a given amount.
- Builder::delete() — Method in class Builder
Delete a record from the database.
- Grammar::dateBasedWhere() — Method in class Grammar
Compile a date based where clause.
- SQLiteGrammar::dateBasedWhere() — Method in class SQLiteGrammar
Compile a date based where clause.
- Blueprint::drop() — Method in class Blueprint
Indicate that the table should be dropped.
- Blueprint::dropIfExists() — Method in class Blueprint
Indicate that the table should be dropped if it exists.
- Blueprint::dropColumn() — Method in class Blueprint
Indicate that the given columns should be dropped.
- Blueprint::dropPrimary() — Method in class Blueprint
Indicate that the given primary key should be dropped.
- Blueprint::dropUnique() — Method in class Blueprint
Indicate that the given unique key should be dropped.
- Blueprint::dropIndex() — Method in class Blueprint
Indicate that the given index should be dropped.
- Blueprint::dropForeign() — Method in class Blueprint
Indicate that the given foreign key should be dropped.
- Blueprint::dropTimestamps() — Method in class Blueprint
Indicate that the timestamp columns should be dropped.
- Blueprint::dropSoftDeletes() — Method in class Blueprint
Indicate that the soft delete column should be dropped.
- Blueprint::double() — Method in class Blueprint
Create a new double column on the table.
- Blueprint::decimal() — Method in class Blueprint
Create a new decimal column on the table.
- Blueprint::date() — Method in class Blueprint
Create a new date column on the table.
- Blueprint::dateTime() — Method in class Blueprint
Create a new date-time column on the table.
- Blueprint::dropIndexCommand() — Method in class Blueprint
Create a new drop index command on the blueprint.
- Builder::drop() — Method in class Builder
Drop a table from the schema.
- Builder::dropIfExists() — Method in class Builder
Drop a table from the schema if it exists.
- $ SeedServiceProvider#defer — Property in class SeedServiceProvider
Indicates if loading of the provider is deferred.
- DecryptException — Class in namespace Illuminate\Encryption
- Encrypter::decrypt() — Method in class Encrypter
Decrypt the given value.
- Dispatcher — Class in namespace Illuminate\Events
- ExceptionDisplayerInterface::display() — Method in class ExceptionDisplayerInterface
Display the given exception to the user.
- $ Handler#debugDisplayer — Property in class Handler
The debug exception displayer.
- $ Handler#debug — Property in class Handler
Indicates if the application is in debug mode.
- Handler::displayException() — Method in class Handler
Display the given exception to the user.
- PlainDisplayer::display() — Method in class PlainDisplayer
Display the given exception to the user.
- SymfonyDisplayer::display() — Method in class SymfonyDisplayer
Display the given exception to the user.
- WhoopsDisplayer::display() — Method in class WhoopsDisplayer
Display the given exception to the user.
- Filesystem::delete() — Method in class Filesystem
Delete the file at a given path.
- Filesystem::directories() — Method in class Filesystem
Get all of the directories within a given directory.
- Filesystem::deleteDirectory() — Method in class Filesystem
Recursively delete a directory.
- $ Application#deferredServices — Property in class Application
The deferred services and their providers.
- Application::detectEnvironment() — Method in class Application
Detect the application's current environment.
- Application::dispatch() — Method in class Application
Handle the given request and get the response.
- Application::down() — Method in class Application
Register a maintenance mode event listener.
- Composer::dumpAutoloads() — Method in class Composer
Regenerate the Composer autoloader files.
- Composer::dumpOptimized() — Method in class Composer
Regenerate the optimized Composer autoloader files.
- $ AssetPublishCommand#description — Property in class AssetPublishCommand
The console command description.
- $ AutoloadCommand#description — Property in class AutoloadCommand
The console command description.
- $ ChangesCommand#description — Property in class ChangesCommand
The console command description.
- $ ClearCompiledCommand#description — Property in class ClearCompiledCommand
The console command description.
- $ CommandMakeCommand#description — Property in class CommandMakeCommand
The console command description.
- $ ConfigPublishCommand#description — Property in class ConfigPublishCommand
The console command description.
- DownCommand — Class in namespace Illuminate\Foundation\Console
- $ DownCommand#description — Property in class DownCommand
The console command description.
- $ EnvironmentCommand#description — Property in class EnvironmentCommand
The console command description.
- $ KeyGenerateCommand#description — Property in class KeyGenerateCommand
The console command description.
- $ MigratePublishCommand#description — Property in class MigratePublishCommand
The console command description.
- $ OptimizeCommand#description — Property in class OptimizeCommand
The console command description.
- $ RoutesCommand#description — Property in class RoutesCommand
The console command description.
- RoutesCommand::displayRoutes() — Method in class RoutesCommand
Display the route information on the console.
- $ ServeCommand#description — Property in class ServeCommand
The console command description.
- $ TailCommand#description — Property in class TailCommand
The console command description.
- $ TinkerCommand#description — Property in class TinkerCommand
The console command description.
- $ UpCommand#description — Property in class UpCommand
The console command description.
- $ ViewPublishCommand#description — Property in class ViewPublishCommand
The console command description.
- EnvironmentDetector::detect() — Method in class EnvironmentDetector
Detect the application's current environment.
- EnvironmentDetector::detectWebEnvironment() — Method in class EnvironmentDetector
Set the application environment for a web request.
- EnvironmentDetector::detectConsoleEnvironment() — Method in class EnvironmentDetector
Set the application environment from command-line arguments.
- $ ProviderRepository#default — Property in class ProviderRepository
Default manifest structure.
- $ ArtisanServiceProvider#defer — Property in class ArtisanServiceProvider
Indicates if loading of the provider is deferred.
- $ CommandCreatorServiceProvider#defer — Property in class CommandCreatorServiceProvider
Indicates if loading of the provider is deferred.
- $ ComposerServiceProvider#defer — Property in class ComposerServiceProvider
Indicates if loading of the provider is deferred.
- $ ConsoleSupportServiceProvider#defer — Property in class ConsoleSupportServiceProvider
Indicates if loading of the provider is deferred.
- $ KeyGeneratorServiceProvider#defer — Property in class KeyGeneratorServiceProvider
Indicates if loading of the provider is deferred.
- $ MaintenanceServiceProvider#defer — Property in class MaintenanceServiceProvider
Indicates if loading of the provider is deferred.
- $ OptimizeServiceProvider#defer — Property in class OptimizeServiceProvider
Indicates if loading of the provider is deferred.
- $ PublisherServiceProvider#defer — Property in class PublisherServiceProvider
Indicates if loading of the provider is deferred.
- $ RouteListServiceProvider#defer — Property in class RouteListServiceProvider
Indicates if loading of the provider is deferred.
- $ ServerServiceProvider#defer — Property in class ServerServiceProvider
Indicates if loading of the provider is deferred.
- $ TinkerServiceProvider#defer — Property in class TinkerServiceProvider
Indicates if loading of the provider is deferred.
- $ HashServiceProvider#defer — Property in class HashServiceProvider
Indicates if loading of the provider is deferred.
- HtmlBuilder::decode() — Method in class HtmlBuilder
Convert entities to HTML characters.
- $ HtmlServiceProvider#defer — Property in class HtmlServiceProvider
Indicates if loading of the provider is deferred.
- Request::decodedPath() — Method in class Request
Get the current encoded path info for the request.
- $ LogServiceProvider#defer — Property in class LogServiceProvider
Indicates if loading of the provider is deferred.
- $ Writer#dispatcher — Property in class Writer
The event dispatcher instance.
- $ MailServiceProvider#defer — Property in class MailServiceProvider
Indicates if loading of the provider is deferred.
- $ MailgunTransport#domain — Property in class MailgunTransport
The Mailgun domain.
- $ PaginationServiceProvider#defer — Property in class PaginationServiceProvider
Indicates if loading of the provider is deferred.
- $ BeanstalkdQueue#default — Property in class BeanstalkdQueue
The name of the default tube.
- BeanstalkdQueue::deleteMessage() — Method in class BeanstalkdQueue
Delete a message from the Beanstalk queue.
- $ FailedTableCommand#description — Property in class FailedTableCommand
The console command description.
- $ FlushFailedCommand#description — Property in class FlushFailedCommand
The console command description.
- $ ForgetFailedCommand#description — Property in class ForgetFailedCommand
The console command description.
- $ ListFailedCommand#description — Property in class ListFailedCommand
The console command description.
- $ ListenCommand#description — Property in class ListenCommand
The console command description.
- $ RestartCommand#description — Property in class RestartCommand
The console command description.
- $ RetryCommand#description — Property in class RetryCommand
The console command description.
- $ SubscribeCommand#description — Property in class SubscribeCommand
The console command description.
- $ WorkCommand#description — Property in class WorkCommand
The console command description.
- WorkCommand::downForMaintenance() — Method in class WorkCommand
Determine if the worker should run in maintenance mode.
- $ FailConsoleServiceProvider#defer — Property in class FailConsoleServiceProvider
Indicates if loading of the provider is deferred.
- DatabaseFailedJobProvider — Class in namespace Illuminate\Queue\Failed
- $ DatabaseFailedJobProvider#database — Property in class DatabaseFailedJobProvider
The database connection name.
- $ IronQueue#default — Property in class IronQueue
The name of the default tube.
- IronQueue::deleteMessage() — Method in class IronQueue
Delete a message from the Iron queue.
- BeanstalkdJob::delete() — Method in class BeanstalkdJob
Delete the job from the queue.
- IronJob::delete() — Method in class IronJob
Delete the job from the queue.
- $ Job#deleted — Property in class Job
Indicates if the job has been deleted.
- Job::delete() — Method in class Job
Delete the job from the queue.
- RedisJob::delete() — Method in class RedisJob
Delete the job from the queue.
- SqsJob::delete() — Method in class SqsJob
Delete the job from the queue.
- $ SyncJob#data — Property in class SyncJob
The queue message data.
- $ QueueServiceProvider#defer — Property in class QueueServiceProvider
Indicates if loading of the provider is deferred.
- $ RedisQueue#default — Property in class RedisQueue
The name of the default queue.
- RedisQueue::deleteReserved() — Method in class RedisQueue
Delete a reserved job from the queue.
- $ SqsQueue#default — Property in class SqsQueue
The name of the default tube.
- Worker::daemon() — Method in class Worker
Listen to the given queue in a loop.
- Worker::daemonShouldRun() — Method in class Worker
Determine if the daemon should process on this iteration.
- Database — Class in namespace Illuminate\Redis
- $ RedisServiceProvider#defer — Property in class RedisServiceProvider
Indicates if loading of the provider is deferred.
- Connection::define() — Method in class Connection
Define a set of commands as a task.
- Connection::display() — Method in class Connection
Display the given line using the default output.
- ConnectionInterface::define() — Method in class ConnectionInterface
Define a set of commands as a task.
- MultiConnection::define() — Method in class MultiConnection
Define a set of commands as a task.
- $ RemoteServiceProvider#defer — Property in class RemoteServiceProvider
Indicates if loading of the provider is deferred.
- $ MakeControllerCommand#description — Property in class MakeControllerCommand
The console command description.
- ControllerDispatcher::dispatch() — Method in class ControllerDispatcher
Dispatch a request to a given controller and method.
- $ ControllerServiceProvider#defer — Property in class ControllerServiceProvider
Indicates if loading of the provider is deferred.
- $ ControllerGenerator#defaults — Property in class ControllerGenerator
The default resource controller methods.
- $ Route#defaults — Property in class Route
The default values for the route.
- Route::defaults() — Method in class Route
Set a default value for the route.
- Route::domain() — Method in class Route
Get the domain defined for the route.
- Router::delete() — Method in class Router
Register a new DELETE route with the router.
- Router::dispatch() — Method in class Router
Dispatch the request to the application.
- Router::dispatchToRoute() — Method in class Router
Dispatch the request to a route and return the response.
- Router::disableFilters() — Method in class Router
Disable route filtering on the router.
- $ UrlGenerator#dontEncode — Property in class UrlGenerator
Characters that should not be URL encoded.
- CacheBasedSessionHandler::destroy() — Method in class CacheBasedSessionHandler
- {@inheritDoc}
- $ CommandsServiceProvider#defer — Property in class CommandsServiceProvider
Indicates if loading of the provider is deferred.
- $ SessionTableCommand#description — Property in class SessionTableCommand
The console command description.
- CookieSessionHandler::destroy() — Method in class CookieSessionHandler
- {@inheritDoc}
- DatabaseSessionHandler — Class in namespace Illuminate\Session
- DatabaseSessionHandler::destroy() — Method in class DatabaseSessionHandler
- {@inheritDoc}
- FileSessionHandler::destroy() — Method in class FileSessionHandler
- {@inheritDoc}
- Arr::divide() — Method in class Arr
Divide an array into two arrays. One with keys and the other with values.
- Arr::dot() — Method in class Arr
Flatten a multi-dimensional associative array with dots.
- $ ClassLoader#directories — Property in class ClassLoader
The registered directories.
- Collection::diff() — Method in class Collection
Diff the collection with the given items.
- DB — Class in namespace Illuminate\Support\Facades
- Response::download() — Method in class Response
Create a new file download response.
- $ Manager#drivers — Property in class Manager
The array of created "drivers".
- Manager::driver() — Method in class Manager
Get a driver instance.
- SerializableClosure::determineCodeAndVariables() — Method in class SerializableClosure
Uses the serialize method directly to lazily fetch the code and variables if needed
- $ ServiceProvider#defer — Property in class ServiceProvider
Indicates if loading of the provider is deferred.
- $ TranslationServiceProvider#defer — Property in class TranslationServiceProvider
Indicates if loading of the provider is deferred.
- DatabasePresenceVerifier — Class in namespace Illuminate\Validation
- $ DatabasePresenceVerifier#db — Property in class DatabasePresenceVerifier
The database connection instance.
- $ ValidationServiceProvider#defer — Property in class ValidationServiceProvider
Indicates if loading of the provider is deferred.
- $ Validator#data — Property in class Validator
The data under validation.
- Validator::doReplacements() — Method in class Validator
Replace all error message place-holders with actual values.
- Factory::decrementRender() — Method in class Factory
Decrement the rendering counter.
- Factory::doneRendering() — Method in class Factory
Check if there are no active render operations.
- $ View#data — Property in class View
The array of view data.
- $ WorkbenchMakeCommand#description — Property in class WorkbenchMakeCommand
The console command description.
- $ WorkbenchServiceProvider#defer — Property in class WorkbenchServiceProvider
Indicates if loading of the provider is deferred.
E
- EloquentUserProvider — Class in namespace Illuminate\Auth
- $ Guard#events — Property in class Guard
The event dispatcher instance.
- $ DatabaseReminderRepository#expires — Property in class DatabaseReminderRepository
The number of seconds a reminder should last.
- DatabaseReminderRepository::exists() — Method in class DatabaseReminderRepository
Determine if a reminder record exists and is valid.
- ReminderRepositoryInterface::exists() — Method in class ReminderRepositoryInterface
Determine if a reminder record exists and is valid.
- $ DatabaseStore#encrypter — Property in class DatabaseStore
The encrypter instance.
- FileStore::expiration() — Method in class FileStore
Get the expiration time based on the given minutes.
- EnvironmentVariables — Class in namespace Illuminate\Config
PHP $_ENV loader for protecting sensitive configuration options.
- EnvironmentVariablesLoaderInterface — Class in namespace Illuminate\Config
- $ FileLoader#exists — Property in class FileLoader
A cache of whether namespaces and groups exists.
- FileLoader::exists() — Method in class FileLoader
Determine if the given group exists.
- LoaderInterface::exists() — Method in class LoaderInterface
Determine if the given configuration group exists.
- $ Repository#environment — Property in class Repository
The current environment.
- $ Application#exceptionHandler — Property in class Application
The exception handler instance.
- Command::execute() — Method in class Command
Execute the console command.
- Command::error() — Method in class Command
Write a string as error output.
- Container::extend() — Method in class Container
"Extend" an abstract type in the container.
- Container::extractAlias() — Method in class Container
Extract the type and alias from a given definition.
- $ Guard#encrypter — Property in class Guard
The encrypter instance.
- Guard::encrypt() — Method in class Guard
Encrypt the cookies on an outgoing response.
- $ Connection#events — Property in class Connection
The event dispatcher instance.
- Connection::enableQueryLog() — Method in class Connection
Enable the query log on the connection.
- $ DatabaseManager#extensions — Property in class DatabaseManager
The custom connection resolvers.
- DatabaseManager::extend() — Method in class DatabaseManager
Register an extension connection resolver.
- $ Builder#eagerLoad — Property in class Builder
The relationships that should be eager loaded.
- Builder::eagerLoadRelations() — Method in class Builder
Eager load the relationships for the models.
- Collection::except() — Method in class Collection
Returns all models in the collection except the models with specified keys.
- $ Model#exists — Property in class Model
Indicates if the model exists.
- $ SoftDeletingScope#extensions — Property in class SoftDeletingScope
All of the extensions to be added to the builder.
- SoftDeletingScope::extend() — Method in class SoftDeletingScope
Extend the query builder with the needed functions.
- Builder::exists() — Method in class Builder
Determine if any rows exist for the current query.
- Expression — Class in namespace Illuminate\Database\Query
- $ Blueprint#engine — Property in class Blueprint
The storage engine that should be used for the table.
- Blueprint::enum() — Method in class Blueprint
Create a new enum column on the table.
- Encrypter — Class in namespace Illuminate\Encryption
- Encrypter::encrypt() — Method in class Encrypter
Encrypt the given value.
- EncryptionServiceProvider — Class in namespace Illuminate\Encryption
- EventServiceProvider — Class in namespace Illuminate\Events
- ExceptionDisplayerInterface — Class in namespace Illuminate\Exception
- ExceptionServiceProvider — Class in namespace Illuminate\Exception
- Handler::error() — Method in class Handler
Register an application error handler.
- Filesystem::exists() — Method in class Filesystem
Determine if a file exists.
- Filesystem::extension() — Method in class Filesystem
Extract the file extension from a file path.
- Application::environment() — Method in class Application
Get or check the current application environment.
- Application::extend() — Method in class Application
"Extend" an abstract type in the container.
- Application::error() — Method in class Application
Register an application error handler.
- EnvironmentCommand — Class in namespace Illuminate\Foundation\Console
- EnvironmentDetector — Class in namespace Illuminate\Foundation
- $ MigrationPublisher#existing — Property in class MigrationPublisher
A cache of migrations at a given destination.
- FormBuilder::email() — Method in class FormBuilder
Create an e-mail input field.
- HtmlBuilder::entities() — Method in class HtmlBuilder
Convert an HTML string to entities.
- HtmlBuilder::email() — Method in class HtmlBuilder
Obfuscate an e-mail address to prevent spam-bots from sniffing it.
- RedirectResponse::exceptInput() — Method in class RedirectResponse
Flash an array of input to the session.
- Request::exists() — Method in class Request
Determine if the request contains a given input item key.
- Request::except() — Method in class Request
Get all of the input except for a specified array of items.
- $ Mailer#events — Property in class Mailer
The event dispatcher instance.
- Message::embed() — Method in class Message
Embed a file in the message and get the CID.
- Message::embedData() — Method in class Message
Embed in-memory data in the message and get the CID.
- $ Listener#environment — Property in class Listener
The environment the workers should run under.
- QueueManager::extend() — Method in class QueueManager
Add a queue connection resolver.
- $ RedisQueue#expire — Property in class RedisQueue
The expiration time of a job.
- $ Worker#events — Property in class Worker
The event dispatcher instance.
- $ Worker#exceptions — Property in class Worker
The exception handler instance.
- MakeControllerCommand::explodeOption() — Method in class MakeControllerCommand
Get and explode a given input option.
- Route::extractOptionalParameters() — Method in class Route
Get the optional parameters for the route.
- Route::explodeFilters() — Method in class Route
Turn the filters into an array if they aren't already.
- Route::explodeArrayFilters() — Method in class Route
Flatten out an array of filter declarations.
- $ Router#events — Property in class Router
The event dispatcher instance.
- Router::enableFilters() — Method in class Router
Enable route filtering on the router.
- $ DatabaseSessionHandler#exists — Property in class DatabaseSessionHandler
The existence state of the session.
- ExistenceAwareInterface — Class in namespace Illuminate\Session
- Arr::except() — Method in class Arr
Get all of the given array except for a specified array of items.
- Collection::each() — Method in class Collection
Execute a callback over each item.
- Event — Class in namespace Illuminate\Support\Facades
- Manager::extend() — Method in class Manager
Register a custom driver creator Closure.
- Str::endsWith() — Method in class Str
Determine if a given string ends with a given substring.
- $ Factory#extensions — Property in class Factory
All of the custom validator extensions.
- Factory::extend() — Method in class Factory
Register a custom validator extension.
- Factory::extendImplicit() — Method in class Factory
Register a custom implicit validator extension.
- $ Validator#extensions — Property in class Validator
All of the custom validator extensions.
- Validator::explodeRules() — Method in class Validator
Explode the rules into an array of rules.
- Validator::each() — Method in class Validator
Define a set of rules that apply to each element in an array attribute.
- Validator::errors() — Method in class Validator
An alternative more semantic shortcut to the message container.
- $ BladeCompiler#extensions — Property in class BladeCompiler
All of the registered extensions.
- $ BladeCompiler#escapedTags — Property in class BladeCompiler
Array of opening and closing tags for escaped echos.
- BladeCompiler::extend() — Method in class BladeCompiler
Register a custom Blade compiler.
- Engine — Class in namespace Illuminate\View\Engines
- EngineInterface — Class in namespace Illuminate\View\Engines
- EngineResolver — Class in namespace Illuminate\View\Engines
- PhpEngine::evaluatePath() — Method in class PhpEngine
Get the evaluated contents of the view at the given path.
- $ Factory#engines — Property in class Factory
The engine implementation.
- $ Factory#events — Property in class Factory
The event dispatcher instance.
- $ Factory#extensions — Property in class Factory
The extension to engine bindings.
- Factory::exists() — Method in class Factory
Determine if a given view exists.
- Factory::extendSection() — Method in class Factory
Append content to a given section.
- $ FileViewFinder#extensions — Property in class FileViewFinder
Register a view extension with the finder.
- $ View#engine — Property in class View
The engine implementation.
- $ Package#email — Property in class Package
The email address of the author.
F
- IlluminateQueueClosure::fire() — Method in class IlluminateQueueClosure
Fire the Closure based queue job.
- ClearRemindersCommand::fire() — Method in class ClearRemindersCommand
Execute the console command.
- $ RemindersControllerCommand#files — Property in class RemindersControllerCommand
The filesystem instance.
- RemindersControllerCommand::fire() — Method in class RemindersControllerCommand
Execute the console command.
- $ RemindersTableCommand#files — Property in class RemindersTableCommand
The filesystem instance.
- RemindersTableCommand::fire() — Method in class RemindersTableCommand
Execute the console command.
- Guard::fireAttemptEvent() — Method in class Guard
Fire the attempt event with the arguments.
- ApcStore::forever() — Method in class ApcStore
Store an item in the cache indefinitely.
- ApcStore::forget() — Method in class ApcStore
Remove an item from the cache.
- ApcStore::flush() — Method in class ApcStore
Remove all items from the cache.
- ApcWrapper::flush() — Method in class ApcWrapper
Remove all items from the cache.
- ArrayStore::forever() — Method in class ArrayStore
Store an item in the cache indefinitely.
- ArrayStore::forget() — Method in class ArrayStore
Remove an item from the cache.
- ArrayStore::flush() — Method in class ArrayStore
Remove all items from the cache.
- $ CacheTableCommand#files — Property in class CacheTableCommand
The filesystem instance.
- CacheTableCommand::fire() — Method in class CacheTableCommand
Execute the console command.
- $ ClearCommand#files — Property in class ClearCommand
The file system instance.
- ClearCommand::fire() — Method in class ClearCommand
Execute the console command.
- DatabaseStore::forever() — Method in class DatabaseStore
Store an item in the cache indefinitely.
- DatabaseStore::forget() — Method in class DatabaseStore
Remove an item from the cache.
- DatabaseStore::flush() — Method in class DatabaseStore
Remove all items from the cache.
- FileStore — Class in namespace Illuminate\Cache
- $ FileStore#files — Property in class FileStore
The Illuminate Filesystem instance.
- FileStore::forever() — Method in class FileStore
Store an item in the cache indefinitely.
- FileStore::forget() — Method in class FileStore
Remove an item from the cache.
- FileStore::flush() — Method in class FileStore
Remove all items from the cache.
- MemcachedStore::forever() — Method in class MemcachedStore
Store an item in the cache indefinitely.
- MemcachedStore::forget() — Method in class MemcachedStore
Remove an item from the cache.
- MemcachedStore::flush() — Method in class MemcachedStore
Remove all items from the cache.
- NullStore::forever() — Method in class NullStore
Store an item in the cache indefinitely.
- NullStore::forget() — Method in class NullStore
Remove an item from the cache.
- NullStore::flush() — Method in class NullStore
Remove all items from the cache.
- RedisStore::forever() — Method in class RedisStore
Store an item in the cache indefinitely.
- RedisStore::forget() — Method in class RedisStore
Remove an item from the cache.
- RedisStore::flush() — Method in class RedisStore
Remove all items from the cache.
- RedisTaggedCache::forever() — Method in class RedisTaggedCache
Store an item in the cache indefinitely.
- RedisTaggedCache::flush() — Method in class RedisTaggedCache
Remove all items from the cache.
- RedisTaggedCache::foreverKey() — Method in class RedisTaggedCache
Get the forever reference key for the segment.
- StoreInterface::forever() — Method in class StoreInterface
Store an item in the cache indefinitely.
- StoreInterface::forget() — Method in class StoreInterface
Remove an item from the cache.
- StoreInterface::flush() — Method in class StoreInterface
Remove all items from the cache.
- TaggedCache::forever() — Method in class TaggedCache
Store an item in the cache indefinitely.
- TaggedCache::forget() — Method in class TaggedCache
Remove an item from the cache.
- TaggedCache::flush() — Method in class TaggedCache
Remove all items from the cache.
- WinCacheStore::forever() — Method in class WinCacheStore
Store an item in the cache indefinitely.
- WinCacheStore::forget() — Method in class WinCacheStore
Remove an item from the cache.
- WinCacheStore::flush() — Method in class WinCacheStore
Remove all items from the cache.
- XCacheStore::forever() — Method in class XCacheStore
Store an item in the cache indefinitely.
- XCacheStore::forget() — Method in class XCacheStore
Remove an item from the cache.
- XCacheStore::flush() — Method in class XCacheStore
Remove all items from the cache.
- FileEnvironmentVariablesLoader — Class in namespace Illuminate\Config
- $ FileEnvironmentVariablesLoader#files — Property in class FileEnvironmentVariablesLoader
The filesystem instance.
- FileLoader — Class in namespace Illuminate\Config
- $ FileLoader#files — Property in class FileLoader
The filesystem instance.
- Container::fireResolvingCallbacks() — Method in class Container
Fire all of the resolving callbacks.
- Container::fireCallbackArray() — Method in class Container
Fire an array of callbacks with an object.
- Container::forgetInstance() — Method in class Container
Remove a resolved instance from the instance cache.
- Container::forgetInstances() — Method in class Container
Clear all of the instances from the container.
- CookieJar::forever() — Method in class CookieJar
Create a cookie that lasts "forever" (five years).
- CookieJar::forget() — Method in class CookieJar
Expire the given cookie.
- $ Connection#fetchMode — Property in class Connection
The default fetch mode of the connection.
- Connection::fireConnectionEvent() — Method in class Connection
Fire an event for this connection.
- Connection::flushQueryLog() — Method in class Connection
Clear the query log.
- InstallCommand::fire() — Method in class InstallCommand
Execute the console command.
- MigrateCommand::fire() — Method in class MigrateCommand
Execute the console command.
- MigrateMakeCommand::fire() — Method in class MigrateMakeCommand
Execute the console command.
- RefreshCommand::fire() — Method in class RefreshCommand
Execute the console command.
- ResetCommand::fire() — Method in class ResetCommand
Execute the console command.
- RollbackCommand::fire() — Method in class RollbackCommand
Execute the console command.
- SeedCommand::fire() — Method in class SeedCommand
Execute the console command.
- $ DatabaseManager#factory — Property in class DatabaseManager
The database connection factory instance.
- Builder::find() — Method in class Builder
Find a model by its primary key.
- Builder::findMany() — Method in class Builder
Find a model by its primary key.
- Builder::findOrFail() — Method in class Builder
Find a model by its primary key or throw an exception.
- Builder::first() — Method in class Builder
Execute the query and get the first result.
- Builder::firstOrFail() — Method in class Builder
Execute the query and get the first result or throw an exception.
- Builder::forceDelete() — Method in class Builder
Run the default delete function on the builder.
- Collection::find() — Method in class Collection
Find a model in the collection by key.
- Collection::fetch() — Method in class Collection
Fetch a nested element of the collection.
- $ Model#fillable — Property in class Model
The attributes that are mass assignable.
- Model::fill() — Method in class Model
Fill the model with an array of attributes.
- Model::fillableFromArray() — Method in class Model
Get the fillable attributes of a given array.
- Model::firstOrCreate() — Method in class Model
Get the first record matching the attributes or create it.
- Model::firstOrNew() — Method in class Model
Get the first record matching the attributes or instantiate it.
- Model::firstByAttributes() — Method in class Model
Get the first model for the given attributes.
- Model::find() — Method in class Model
Find a model by its primary key.
- Model::findOrNew() — Method in class Model
Find a model by its primary key or return new static.
- Model::findOrFail() — Method in class Model
Find a model by its primary key or throw an exception.
- Model::forceDelete() — Method in class Model
Force a hard delete on a soft deleted model.
- Model::flushEventListeners() — Method in class Model
Remove all of the event listeners for the model.
- Model::finishSave() — Method in class Model
Finish processing on a successful save operation.
- Model::fireModelEvent() — Method in class Model
Fire the given event for the model.
- Model::freshTimestamp() — Method in class Model
Get a fresh timestamp for the model.
- Model::freshTimestampString() — Method in class Model
Get a fresh timestamp for the model.
- Model::fillable() — Method in class Model
Set the fillable attributes for the model.
- Model::fromDateTime() — Method in class Model
Convert a DateTime to a storable string.
- $ BelongsTo#foreignKey — Property in class BelongsTo
The foreign key of the parent model.
- $ BelongsToMany#foreignKey — Property in class BelongsToMany
The foreign key of the parent model.
- BelongsToMany::first() — Method in class BelongsToMany
Execute the query and get the first result.
- BelongsToMany::firstOrFail() — Method in class BelongsToMany
Execute the query and get the first result or throw an exception.
- BelongsToMany::formatSyncList() — Method in class BelongsToMany
Format the sync list so that it is keyed by ID.
- $ HasManyThrough#farParent — Property in class HasManyThrough
The distance parent model instance.
- $ HasManyThrough#firstKey — Property in class HasManyThrough
The near key on the relationship.
- $ HasOneOrMany#foreignKey — Property in class HasOneOrMany
The foreign key of the parent model.
- $ Pivot#foreignKey — Property in class Pivot
The name of the foreign key column.
- $ SoftDeletingTrait#forceDeleting — Property in class SoftDeletingTrait
Indicates if the model is currently force deleting.
- SoftDeletingTrait::forceDelete() — Method in class SoftDeletingTrait
Force a hard delete on a soft deleted model.
- $ MigrationCreator#files — Property in class MigrationCreator
The filesystem instance.
- MigrationCreator::firePostCreateHooks() — Method in class MigrationCreator
Fire the registered post create hooks.
- $ Migrator#files — Property in class Migrator
The filesystem instance.
- QueryException::formatMessage() — Method in class QueryException
Format the SQL error message.
- $ Builder#from — Property in class Builder
The table which the query is targeting.
- Builder::from() — Method in class Builder
Set the table which the query is targeting.
- Builder::forPage() — Method in class Builder
Set the limit and offset for a given page.
- Builder::find() — Method in class Builder
Execute a query for a single record by ID.
- Builder::first() — Method in class Builder
Execute the query and get the first result.
- Blueprint::foreign() — Method in class Blueprint
Specify a foreign key for the table.
- Blueprint::float() — Method in class Blueprint
Create a new float column on the table.
- $ Dispatcher#firing — Property in class Dispatcher
The event firing stack.
- Dispatcher::flush() — Method in class Dispatcher
Flush a set of queued events.
- Dispatcher::firing() — Method in class Dispatcher
Get the event that is currently firing.
- Dispatcher::fire() — Method in class Dispatcher
Fire an event and call the listeners.
- Dispatcher::forget() — Method in class Dispatcher
Remove a set of listeners from the dispatcher.
- Dispatcher::forgetQueued() — Method in class Dispatcher
Forget all of the queued listeners.
- Handler::formatException() — Method in class Handler
Format an exception thrown by a handler.
- FileNotFoundException — Class in namespace Illuminate\Filesystem
- Filesystem — Class in namespace Illuminate\Filesystem
- Filesystem::files() — Method in class Filesystem
Get an array of all files in a directory.
- FilesystemServiceProvider — Class in namespace Illuminate\Filesystem
- $ Application#finishCallbacks — Property in class Application
The array of finish callbacks.
- Application::forceRegister() — Method in class Application
Force register a service provider with the application.
- Application::finish() — Method in class Application
Register a "finish" application filter.
- Application::forgetMiddleware() — Method in class Application
Remove a custom middleware from the application.
- Application::fireAppCallbacks() — Method in class Application
Call the booting callbacks for the application.
- Application::fatal() — Method in class Application
Register an error handler for fatal errors.
- $ AssetPublisher#files — Property in class AssetPublisher
The filesystem instance.
- $ Composer#files — Property in class Composer
The filesystem instance.
- Composer::findComposer() — Method in class Composer
Get the composer command for the environment.
- $ ConfigPublisher#files — Property in class ConfigPublisher
The filesystem instance.
- AssetPublishCommand::fire() — Method in class AssetPublishCommand
Execute the console command.
- AssetPublishCommand::findAllAssetPackages() — Method in class AssetPublishCommand
Find all the asset hosting packages in the system.
- AutoloadCommand::fire() — Method in class AutoloadCommand
Execute the console command.
- AutoloadCommand::findWorkbenches() — Method in class AutoloadCommand
Get all of the workbench directories.
- ChangesCommand::fire() — Method in class ChangesCommand
Execute the console command.
- ChangesCommand::formatMessage() — Method in class ChangesCommand
Format the given change message.
- ClearCompiledCommand::fire() — Method in class ClearCompiledCommand
Execute the console command.
- CommandMakeCommand::fire() — Method in class CommandMakeCommand
Execute the console command.
- CommandMakeCommand::formatStub() — Method in class CommandMakeCommand
Format the command class stub.
- ConfigPublishCommand::fire() — Method in class ConfigPublishCommand
Execute the console command.
- DownCommand::fire() — Method in class DownCommand
Execute the console command.
- EnvironmentCommand::fire() — Method in class EnvironmentCommand
Execute the console command.
- KeyGenerateCommand::fire() — Method in class KeyGenerateCommand
Execute the console command.
- MigratePublishCommand::fire() — Method in class MigratePublishCommand
Execute the console command.
- OptimizeCommand::fire() — Method in class OptimizeCommand
Execute the console command.
- RoutesCommand::fire() — Method in class RoutesCommand
Execute the console command.
- RoutesCommand::filterRoute() — Method in class RoutesCommand
Filter the route by URI and / or name.
- ServeCommand::fire() — Method in class ServeCommand
Execute the console command.
- TailCommand::fire() — Method in class TailCommand
Execute the console command.
- TinkerCommand::fire() — Method in class TinkerCommand
Execute the console command.
- UpCommand::fire() — Method in class UpCommand
Execute the console command.
- ViewPublishCommand::fire() — Method in class ViewPublishCommand
Execute the console command.
- $ ProviderRepository#files — Property in class ProviderRepository
The filesystem instance.
- ProviderRepository::freshManifest() — Method in class ProviderRepository
Create a fresh manifest array.
- ApplicationTrait::flushSession() — Method in class ApplicationTrait
Flush all of the current session data.
- Client::filterRequest() — Method in class Client
Convert a BrowserKit request into a Illuminate request.
- $ ViewPublisher#files — Property in class ViewPublisher
The filesystem instance.
- FormBuilder — Class in namespace Illuminate\Html
- FormBuilder::formatLabel() — Method in class FormBuilder
Format the label value.
- FormBuilder::file() — Method in class FormBuilder
Create a file input field.
- FrameGuard — Class in namespace Illuminate\Http
- Request::fullUrl() — Method in class Request
Get the full URL for the request.
- Request::file() — Method in class Request
Retrieve a file from the request.
- Request::flash() — Method in class Request
Flash the input for the current request to the session.
- Request::flashOnly() — Method in class Request
Flash only some of the input to the session.
- Request::flashExcept() — Method in class Request
Flash only some of the input to the session.
- Request::flush() — Method in class Request
Flush all of the old input from the session.
- Request::format() — Method in class Request
Get the data format expected in the response.
- Writer::fireLogEvent() — Method in class Writer
Fires a log event.
- Writer::formatParameters() — Method in class Writer
Format the parameters for the logger.
- $ Mailer#from — Property in class Mailer
The global from address and name.
- $ Mailer#failedRecipients — Property in class Mailer
Array of failed recipients.
- Mailer::failures() — Method in class Mailer
Get the array of failed recipients.
- Message::from() — Method in class Message
Add a "from" address to the message.
- Factory — Class in namespace Illuminate\Pagination
- $ Paginator#factory — Property in class Paginator
The pagination factory.
- $ Paginator#from — Property in class Paginator
The number of the first item in this range.
- $ Paginator#fragment — Property in class Paginator
The fragment to be appended to all URLs.
- Paginator::fragment() — Method in class Paginator
Get / set the URL fragment to be appended to URLs.
- FailedTableCommand — Class in namespace Illuminate\Queue\Console
- $ FailedTableCommand#files — Property in class FailedTableCommand
The filesystem instance.
- FailedTableCommand::fire() — Method in class FailedTableCommand
Execute the console command.
- FlushFailedCommand — Class in namespace Illuminate\Queue\Console
- FlushFailedCommand::fire() — Method in class FlushFailedCommand
Execute the console command.
- ForgetFailedCommand — Class in namespace Illuminate\Queue\Console
- ForgetFailedCommand::fire() — Method in class ForgetFailedCommand
Execute the console command.
- ListFailedCommand::fire() — Method in class ListFailedCommand
Execute the console command.
- ListenCommand::fire() — Method in class ListenCommand
Execute the console command.
- RestartCommand::fire() — Method in class RestartCommand
Execute the console command.
- RetryCommand::fire() — Method in class RetryCommand
Execute the console command.
- SubscribeCommand::fire() — Method in class SubscribeCommand
Execute the console command.
- WorkCommand::fire() — Method in class WorkCommand
Execute the console command.
- FailConsoleServiceProvider — Class in namespace Illuminate\Queue
- DatabaseFailedJobProvider::find() — Method in class DatabaseFailedJobProvider
Get a single failed job.
- DatabaseFailedJobProvider::forget() — Method in class DatabaseFailedJobProvider
Delete a single failed job from storage.
- DatabaseFailedJobProvider::flush() — Method in class DatabaseFailedJobProvider
Flush all of the failed jobs from storage.
- FailedJobProviderInterface — Class in namespace Illuminate\Queue\Failed
- FailedJobProviderInterface::find() — Method in class FailedJobProviderInterface
Get a single failed job.
- FailedJobProviderInterface::forget() — Method in class FailedJobProviderInterface
Delete a single failed job from storage.
- FailedJobProviderInterface::flush() — Method in class FailedJobProviderInterface
Flush all of the failed jobs from storage.
- BeanstalkdJob::fire() — Method in class BeanstalkdJob
Fire the job.
- IronJob::fire() — Method in class IronJob
Fire the job.
- Job::fire() — Method in class Job
Fire the job.
- RedisJob::fire() — Method in class RedisJob
Fire the job.
- SqsJob::fire() — Method in class SqsJob
Fire the job.
- SyncJob::fire() — Method in class SyncJob
Fire the job.
- QueueManager::failing() — Method in class QueueManager
Register an event listener for the failed job event.
- $ Worker#failer — Property in class Worker
The failed job provider implementation.
- Connection::formatCommands() — Method in class Connection
Format the given command set.
- $ SecLibGateway#files — Property in class SecLibGateway
The filesystem instance.
- MakeControllerCommand::fire() — Method in class MakeControllerCommand
Execute the console command.
- $ Controller#filterer — Property in class Controller
The route filterer implementation.
- Controller::forgetBeforeFilter() — Method in class Controller
Remove the given before filter.
- Controller::forgetAfterFilter() — Method in class Controller
Remove the given after filter.
- $ ControllerDispatcher#filterer — Property in class ControllerDispatcher
The routing filterer implementation.
- ControllerDispatcher::filterApplies() — Method in class ControllerDispatcher
Determine if the given filter applies to the request.
- ControllerDispatcher::filterFailsOnly() — Method in class ControllerDispatcher
Determine if the filter fails the "only" constraint.
- ControllerDispatcher::filterFailsExcept() — Method in class ControllerDispatcher
Determine if the filter fails the "except" constraint.
- ControllerDispatcher::filterFailsOn() — Method in class ControllerDispatcher
Determine if the filter fails the "on" constraint.
- $ ControllerGenerator#files — Property in class ControllerGenerator
The filesystem instance.
- Route::forgetParameter() — Method in class Route
Unset a parameter on the route if it is set.
- Route::findClosure() — Method in class Route
Find the Closure in an action array.
- RouteFiltererInterface::filter() — Method in class RouteFiltererInterface
Register a new filter with the router.
- $ Router#filtering — Property in class Router
Indicates if the router is running filters.
- Router::formatUsesPrefix() — Method in class Router
Format the uses prefix for the new group attributes.
- Router::formatGroupPrefix() — Method in class Router
Format the prefix for the new group attributes.
- Router::findRoute() — Method in class Router
Find the route matching a given request.
- Router::filter() — Method in class Router
Register a new filter with the router.
- Router::findPatternFilters() — Method in class Router
Find the patterned filters matching a request.
- Router::filterSupportsMethod() — Method in class Router
Determine if the given pattern filters applies to a given method.
- $ UrlGenerator#forcedRoot — Property in class UrlGenerator
The force URL root.
- $ UrlGenerator#forceSchema — Property in class UrlGenerator
The forced schema for URLs.
- UrlGenerator::full() — Method in class UrlGenerator
Get the full URL for the current request.
- UrlGenerator::forceSchema() — Method in class UrlGenerator
Force the schema for URLs.
- UrlGenerator::formatDomain() — Method in class UrlGenerator
Format the domain and port for the route and request.
- UrlGenerator::forceRootUrl() — Method in class UrlGenerator
Set the forced root URL.
- $ SessionTableCommand#files — Property in class SessionTableCommand
The filesystem instance.
- SessionTableCommand::fire() — Method in class SessionTableCommand
Execute the console command.
- FileSessionHandler — Class in namespace Illuminate\Session
- $ FileSessionHandler#files — Property in class FileSessionHandler
The filesystem instance.
- Store::flash() — Method in class Store
Flash a key / value pair to the session.
- Store::flashInput() — Method in class Store
Flash an input array to the session.
- Store::forget() — Method in class Store
Remove an item from the session.
- Store::flush() — Method in class Store
Remove all of the items from the session.
- Arr::fetch() — Method in class Arr
Fetch a flattened array of a nested array element.
- Arr::first() — Method in class Arr
Return the first element in an array passing a given truth test.
- Arr::flatten() — Method in class Arr
Flatten a multi-dimensional array into a single level.
- Arr::forget() — Method in class Arr
Remove one or many array items from a given array using "dot" notation.
- Collection::fetch() — Method in class Collection
Fetch a nested element of the collection.
- Collection::filter() — Method in class Collection
Run a filter over each of the items.
- Collection::first() — Method in class Collection
Get the first item from the collection.
- Collection::flatten() — Method in class Collection
Get a flattened array of the items in the collection.
- Collection::flip() — Method in class Collection
Flip the items in the collection.
- Collection::forget() — Method in class Collection
Remove an item from the collection by key.
- Facade — Class in namespace Illuminate\Support\Facades
- File — Class in namespace Illuminate\Support\Facades
- Form — Class in namespace Illuminate\Support\Facades
- Fluent — Class in namespace Illuminate\Support
- $ MessageBag#format — Property in class MessageBag
Default format for message output.
- MessageBag::first() — Method in class MessageBag
Get the first message from the bag for a given key.
- Str::finish() — Method in class Str
Cap a string with a single instance of a given value.
- FileLoader — Class in namespace Illuminate\Translation
- $ FileLoader#files — Property in class FileLoader
The filesystem instance.
- $ Translator#fallback — Property in class Translator
The fallback locale used by the translator.
- Factory — Class in namespace Illuminate\Validation
- $ Factory#fallbackMessages — Property in class Factory
All of the fallback messages for custom rules.
- $ Validator#failedRules — Property in class Validator
The failed validation rules.
- $ Validator#files — Property in class Validator
The files under validation.
- $ Validator#fallbackMessages — Property in class Validator
The array of fallback error messages.
- Validator::fails() — Method in class Validator
Determine if the data fails the validation rules.
- Validator::failed() — Method in class Validator
Get the failed validation rules.
- $ BladeCompiler#footer — Property in class BladeCompiler
Array of footer lines to be added to template.
- $ BladeCompiler#forelseCounter — Property in class BladeCompiler
Counter to keep track of nested forelse statements.
- $ Compiler#files — Property in class Compiler
The Filesystem instance.
- Factory — Class in namespace Illuminate\View
- $ Factory#finder — Property in class Factory
The view finder implementation.
- Factory::flushSections() — Method in class Factory
Flush all of the section contents.
- Factory::flushSectionsIfDoneRendering() — Method in class Factory
Flush all of the section contents if done rendering.
- FileViewFinder — Class in namespace Illuminate\View
- $ FileViewFinder#files — Property in class FileViewFinder
The filesystem instance.
- FileViewFinder::find() — Method in class FileViewFinder
Get the fully qualified location of the view.
- FileViewFinder::findNamedPathView() — Method in class FileViewFinder
Get the path to a template with a named path.
- FileViewFinder::findInPaths() — Method in class FileViewFinder
Find the given view in the list of paths.
- $ View#factory — Property in class View
The view factory instance.
- ViewFinderInterface::find() — Method in class ViewFinderInterface
Get the fully qualified location of the view.
- WorkbenchMakeCommand::fire() — Method in class WorkbenchMakeCommand
Execute the console command.
- $ PackageCreator#files — Property in class PackageCreator
The filesystem instance.
- PackageCreator::formatPackageStub() — Method in class PackageCreator
Format a generic package stub file.
G
- AuthManager::getDefaultDriver() — Method in class AuthManager
Get the default authentication driver name.
- RemindersControllerCommand::getOptions() — Method in class RemindersControllerCommand
Get the console command options.
- RemindersTableCommand::getMigrationStub() — Method in class RemindersTableCommand
Get the contents of the reminder migration stub.
- RemindersTableCommand::getTable() — Method in class RemindersTableCommand
Get the password reminder table name.
- GenericUser — Class in namespace Illuminate\Auth
- GenericUser::getAuthIdentifier() — Method in class GenericUser
Get the unique identifier for the user.
- GenericUser::getAuthPassword() — Method in class GenericUser
Get the password for the user.
- GenericUser::getRememberToken() — Method in class GenericUser
Get the token value for the "remember me" session.
- GenericUser::getRememberTokenName() — Method in class GenericUser
Get the column name for the "remember me" token.
- Guard — Class in namespace Illuminate\Auth
- Guard::guest() — Method in class Guard
Determine if the current user is a guest.
- Guard::getUserByRecaller() — Method in class Guard
Pull a user from the repository by its recaller ID.
- Guard::getRecaller() — Method in class Guard
Get the decrypted recaller cookie for the request.
- Guard::getRecallerId() — Method in class Guard
Get the user ID from the recaller cookie.
- Guard::getBasicCredentials() — Method in class Guard
Get the credential array for a HTTP Basic request.
- Guard::getBasicResponse() — Method in class Guard
Get the response for basic authentication.
- Guard::getCookieJar() — Method in class Guard
Get the cookie creator instance used by the guard.
- Guard::getDispatcher() — Method in class Guard
Get the event dispatcher instance.
- Guard::getSession() — Method in class Guard
Get the session store used by the guard.
- Guard::getProvider() — Method in class Guard
Get the user provider used by the guard.
- Guard::getUser() — Method in class Guard
Return the currently cached user of the application.
- Guard::getRequest() — Method in class Guard
Get the current request instance.
- Guard::getLastAttempted() — Method in class Guard
Get the last user we attempted to authenticate.
- Guard::getName() — Method in class Guard
Get a unique identifier for the auth session value.
- Guard::getRecallerName() — Method in class Guard
Get the name of the cookie used to store the "recaller".
- DatabaseReminderRepository::getPayload() — Method in class DatabaseReminderRepository
Build the record payload for the table.
- DatabaseReminderRepository::getCurrentTime() — Method in class DatabaseReminderRepository
Get the current UNIX timestamp.
- DatabaseReminderRepository::getTable() — Method in class DatabaseReminderRepository
Begin a new database query against the table.
- DatabaseReminderRepository::getConnection() — Method in class DatabaseReminderRepository
Get the database connection instance.
- PasswordBroker::getUser() — Method in class PasswordBroker
Get the user for the given credentials.
- PasswordBroker::getRepository() — Method in class PasswordBroker
Get the password reminder repository implementation.
- RemindableInterface::getReminderEmail() — Method in class RemindableInterface
Get the e-mail address where password reminders are sent.
- RemindableTrait::getReminderEmail() — Method in class RemindableTrait
Get the e-mail address where password reminders are sent.
- UserInterface::getAuthIdentifier() — Method in class UserInterface
Get the unique identifier for the user.
- UserInterface::getAuthPassword() — Method in class UserInterface
Get the password for the user.
- UserInterface::getRememberToken() — Method in class UserInterface
Get the token value for the "remember me" session.
- UserInterface::getRememberTokenName() — Method in class UserInterface
Get the column name for the "remember me" token.
- UserTrait::getAuthIdentifier() — Method in class UserTrait
Get the unique identifier for the user.
- UserTrait::getAuthPassword() — Method in class UserTrait
Get the password for the user.
- UserTrait::getRememberToken() — Method in class UserTrait
Get the token value for the "remember me" session.
- UserTrait::getRememberTokenName() — Method in class UserTrait
Get the column name for the "remember me" token.
- ApcStore::get() — Method in class ApcStore
Retrieve an item from the cache by key.
- ApcStore::getPrefix() — Method in class ApcStore
Get the cache key prefix.
- ApcWrapper::get() — Method in class ApcWrapper
Get an item from the cache.
- ArrayStore::get() — Method in class ArrayStore
Retrieve an item from the cache by key.
- ArrayStore::getPrefix() — Method in class ArrayStore
Get the cache key prefix.
- CacheManager::getDatabaseConnection() — Method in class CacheManager
Get the database connection for the database driver.
- CacheManager::getPrefix() — Method in class CacheManager
Get the cache "prefix" value.
- CacheManager::getDefaultDriver() — Method in class CacheManager
Get the default cache driver name.
- DatabaseStore::get() — Method in class DatabaseStore
Retrieve an item from the cache by key.
- DatabaseStore::getTime() — Method in class DatabaseStore
Get the current system time.
- DatabaseStore::getConnection() — Method in class DatabaseStore
Get the underlying database connection.
- DatabaseStore::getEncrypter() — Method in class DatabaseStore
Get the encrypter instance.
- DatabaseStore::getPrefix() — Method in class DatabaseStore
Get the cache key prefix.
- FileStore::get() — Method in class FileStore
Retrieve an item from the cache by key.
- FileStore::getPayload() — Method in class FileStore
Retrieve an item and expiry time from the cache by key.
- FileStore::getFilesystem() — Method in class FileStore
Get the Filesystem instance.
- FileStore::getDirectory() — Method in class FileStore
Get the working directory of the cache.
- FileStore::getPrefix() — Method in class FileStore
Get the cache key prefix.
- MemcachedConnector::getMemcached() — Method in class MemcachedConnector
Get a new Memcached instance.
- MemcachedStore::get() — Method in class MemcachedStore
Retrieve an item from the cache by key.
- MemcachedStore::getMemcached() — Method in class MemcachedStore
Get the underlying Memcached connection.
- MemcachedStore::getPrefix() — Method in class MemcachedStore
Get the cache key prefix.
- NullStore::get() — Method in class NullStore
Retrieve an item from the cache by key.
- NullStore::getPrefix() — Method in class NullStore
Get the cache key prefix.
- RedisStore::get() — Method in class RedisStore
Retrieve an item from the cache by key.
- RedisStore::getRedis() — Method in class RedisStore
Get the Redis database instance.
- RedisStore::getPrefix() — Method in class RedisStore
Get the cache key prefix.
- Repository::get() — Method in class Repository
Retrieve an item from the cache by key.
- Repository::getDefaultCacheTime() — Method in class Repository
Get the default cache time.
- Repository::getStore() — Method in class Repository
Get the cache store implementation.
- Repository::getMinutes() — Method in class Repository
Calculate the number of minutes with the given duration.
- StoreInterface::get() — Method in class StoreInterface
Retrieve an item from the cache by key.
- StoreInterface::getPrefix() — Method in class StoreInterface
Get the cache key prefix.
- TagSet::getNamespace() — Method in class TagSet
Get a unique namespace that changes when any of the tags are flushed.
- TaggedCache::get() — Method in class TaggedCache
Retrieve an item from the cache by key.
- TaggedCache::getPrefix() — Method in class TaggedCache
Get the cache key prefix.
- TaggedCache::getMinutes() — Method in class TaggedCache
Calculate the number of minutes with the given duration.
- WinCacheStore::get() — Method in class WinCacheStore
Retrieve an item from the cache by key.
- WinCacheStore::getPrefix() — Method in class WinCacheStore
Get the cache key prefix.
- XCacheStore::get() — Method in class XCacheStore
Retrieve an item from the cache by key.
- XCacheStore::getPrefix() — Method in class XCacheStore
Get the cache key prefix.
- FileEnvironmentVariablesLoader::getFile() — Method in class FileEnvironmentVariablesLoader
Get the file for the given environment.
- FileLoader::getPackagePath() — Method in class FileLoader
Get the package path for an environment and group.
- FileLoader::getPath() — Method in class FileLoader
Get the configuration path for a namespace.
- FileLoader::getNamespaces() — Method in class FileLoader
Returns all registered namespaces with the config loader.
- FileLoader::getRequire() — Method in class FileLoader
Get a file's contents by requiring it.
- FileLoader::getFilesystem() — Method in class FileLoader
Get the Filesystem instance.
- LoaderInterface::getNamespaces() — Method in class LoaderInterface
Returns all registered namespaces with the config loader.
- Repository::get() — Method in class Repository
Get the specified configuration value.
- Repository::getPackageNamespace() — Method in class Repository
Get the configuration namespace for a package.
- Repository::getCollection() — Method in class Repository
Get the collection identifier.
- Repository::getNamespaces() — Method in class Repository
Returns all registered namespaces with the config loader.
- Repository::getLoader() — Method in class Repository
Get the loader implementation.
- Repository::getEnvironment() — Method in class Repository
Get the current configuration environment.
- Repository::getAfterLoadCallbacks() — Method in class Repository
Get the after load callback array.
- Repository::getItems() — Method in class Repository
Get all of the configuration items.
- Application::getDefaultInputDefinition() — Method in class Application
Get the default input definitions for the applications.
- Application::getEnvironmentOption() — Method in class Application
Get the global environment option for the definition.
- Command::getArguments() — Method in class Command
Get the console command arguments.
- Command::getOptions() — Method in class Command
Get the console command options.
- Command::getOutput() — Method in class Command
Get the output implementation.
- Command::getLaravel() — Method in class Command
Get the Laravel application instance.
- ConfirmableTrait::getDefaultConfirmCallback() — Method in class ConfirmableTrait
Get the default confirmation callback.
- $ Container#globalResolvingCallbacks — Property in class Container
All of the global resolving callbacks.
- Container::getClosure() — Method in class Container
Get the Closure to be used when building a type.
- Container::getExtender() — Method in class Container
Get an extender Closure for resolving a type.
- Container::getReboundCallbacks() — Method in class Container
Get the rebound callbacks for a given type.
- Container::getConcrete() — Method in class Container
Get the concrete type for a given abstract.
- Container::getDependencies() — Method in class Container
Resolve all of the dependencies from the ReflectionParameters.
- Container::getAlias() — Method in class Container
Get the alias for an abstract if available.
- Container::getBindings() — Method in class Container
Get the container's bindings.
- CookieJar::getPathAndDomain() — Method in class CookieJar
Get the path and domain, or the default values.
- CookieJar::getQueuedCookies() — Method in class CookieJar
Get the cookies which have been queued for the next request
- Guard — Class in namespace Illuminate\Cookie
- Manager::getConnection() — Method in class Manager
Get a registered connection instance.
- Manager::getDatabaseManager() — Method in class Manager
Get the database manager instance.
- Manager::getEventDispatcher() — Method in class Manager
Get the current event dispatcher instance.
- Manager::getCacheManager() — Method in class Manager
Get the current cache manager instance.
- Connection::getDefaultQueryGrammar() — Method in class Connection
Get the default query grammar instance.
- Connection::getDefaultSchemaGrammar() — Method in class Connection
Get the default schema grammar instance.
- Connection::getDefaultPostProcessor() — Method in class Connection
Get the default post processor instance.
- Connection::getSchemaBuilder() — Method in class Connection
Get a schema builder instance for the connection.
- Connection::getPdoForSelect() — Method in class Connection
Get the PDO connection to use for a select query.
- Connection::getElapsedTime() — Method in class Connection
Get the elapsed time since a given starting point.
- Connection::getDoctrineColumn() — Method in class Connection
Get a Doctrine Schema Column instance.
- Connection::getDoctrineSchemaManager() — Method in class Connection
Get the Doctrine DBAL schema manager for the connection.
- Connection::getDoctrineConnection() — Method in class Connection
Get the Doctrine DBAL database connection instance.
- Connection::getPdo() — Method in class Connection
Get the current PDO connection.
- Connection::getReadPdo() — Method in class Connection
Get the current PDO connection used for reading.
- Connection::getName() — Method in class Connection
Get the database connection name.
- Connection::getConfig() — Method in class Connection
Get an option from the configuration options.
- Connection::getDriverName() — Method in class Connection
Get the PDO driver name.
- Connection::getQueryGrammar() — Method in class Connection
Get the query grammar used by the connection.
- Connection::getSchemaGrammar() — Method in class Connection
Get the schema grammar used by the connection.
- Connection::getPostProcessor() — Method in class Connection
Get the query post processor used by the connection.
- Connection::getEventDispatcher() — Method in class Connection
Get the event dispatcher used by the connection.
- Connection::getPaginator() — Method in class Connection
Get the paginator environment instance.
- Connection::getCacheManager() — Method in class Connection
Get the cache manager instance.
- Connection::getFetchMode() — Method in class Connection
Get the default fetch mode for the connection.
- Connection::getQueryLog() — Method in class Connection
Get the connection query log.
- Connection::getDatabaseName() — Method in class Connection
Get the name of the connected database.
- Connection::getTablePrefix() — Method in class Connection
Get the table prefix for the connection.
- ConnectionResolver::getDefaultConnection() — Method in class ConnectionResolver
Get the default connection name.
- ConnectionResolverInterface::getDefaultConnection() — Method in class ConnectionResolverInterface
Get the default connection name.
- ConnectionFactory::getReadConfig() — Method in class ConnectionFactory
Get the read configuration for a read / write connection.
- ConnectionFactory::getWriteConfig() — Method in class ConnectionFactory
Get the read configuration for a read / write connection.
- ConnectionFactory::getReadWriteConfig() — Method in class ConnectionFactory
Get a read / write level configuration.
- Connector::getOptions() — Method in class Connector
Get the PDO options based on the configuration.
- Connector::getDefaultOptions() — Method in class Connector
Get the default PDO connection options.
- MySqlConnector::getDsn() — Method in class MySqlConnector
Create a DSN string from a configuration. Chooses socket or host/port based on the 'unix_socket' config value
- MySqlConnector::getSocketDsn() — Method in class MySqlConnector
Get the DSN string for a socket configuration.
- MySqlConnector::getHostDsn() — Method in class MySqlConnector
Get the DSN string for a host / port configuration.
- PostgresConnector::getDsn() — Method in class PostgresConnector
Create a DSN string from a configuration.
- SqlServerConnector::getDsn() — Method in class SqlServerConnector
Create a DSN string from a configuration.
- SqlServerConnector::getAvailableDrivers() — Method in class SqlServerConnector
Get the available PDO drivers.
- BaseCommand::getMigrationPath() — Method in class BaseCommand
Get the path to the migration directory.
- InstallCommand::getOptions() — Method in class InstallCommand
Get the console command options.
- MigrateCommand::getOptions() — Method in class MigrateCommand
Get the console command options.
- MigrateMakeCommand::getArguments() — Method in class MigrateMakeCommand
Get the console command arguments.
- MigrateMakeCommand::getOptions() — Method in class MigrateMakeCommand
Get the console command options.
- RefreshCommand::getOptions() — Method in class RefreshCommand
Get the console command options.
- ResetCommand::getOptions() — Method in class ResetCommand
Get the console command options.
- RollbackCommand::getOptions() — Method in class RollbackCommand
Get the console command options.
- SeedCommand::getSeeder() — Method in class SeedCommand
Get a seeder instance from the container.
- SeedCommand::getDatabase() — Method in class SeedCommand
Get the name of the database connection to use.
- SeedCommand::getOptions() — Method in class SeedCommand
Get the console command options.
- DatabaseManager::getConfig() — Method in class DatabaseManager
Get the configuration for a connection.
- DatabaseManager::getDefaultConnection() — Method in class DatabaseManager
Get the default connection name.
- DatabaseManager::getConnections() — Method in class DatabaseManager
Return all of the created connections.
- Builder::get() — Method in class Builder
Execute the query as a "select" statement.
- Builder::groupedPaginate() — Method in class Builder
Get a paginator for a grouped statement.
- Builder::getModels() — Method in class Builder
Get the hydrated models without eager loading.
- Builder::getRelation() — Method in class Builder
Get the relation instance for the given relation name.
- Builder::getHasRelationQuery() — Method in class Builder
Get the "has relation" base query instance.
- Builder::getQuery() — Method in class Builder
Get the underlying query builder instance.
- Builder::getEagerLoads() — Method in class Builder
Get the relationships being eagerly loaded.
- Builder::getModel() — Method in class Builder
Get the model instance being queried.
- Builder::getMacro() — Method in class Builder
Get the given macro by name.
- Collection::getDictionary() — Method in class Collection
Get a dictionary keyed by primary keys.
- $ Model#guarded — Property in class Model
The attributes that aren't mass assignable.
- $ Model#globalScopes — Property in class Model
The array of global scopes on the model.
- Model::getGlobalScope() — Method in class Model
Get a global scope registered with the model.
- Model::getGlobalScopes() — Method in class Model
Get the global scopes for this class instance.
- Model::getBelongsToManyCaller() — Method in class Model
Get the relationship name of the belongs to many.
- Model::getObservableEvents() — Method in class Model
Get the observable event names.
- Model::getKeyForSaveQuery() — Method in class Model
Get the primary key value for a save query.
- Model::getCreatedAtColumn() — Method in class Model
Get the name of the "created at" column.
- Model::getUpdatedAtColumn() — Method in class Model
Get the name of the "updated at" column.
- Model::getTable() — Method in class Model
Get the table associated with the model.
- Model::getKey() — Method in class Model
Get the value of the model's primary key.
- Model::getKeyName() — Method in class Model
Get the primary key for the model.
- Model::getQualifiedKeyName() — Method in class Model
Get the table qualified key name.
- Model::getMorphs() — Method in class Model
Get the polymorphic relationship columns.
- Model::getMorphClass() — Method in class Model
Get the class name for polymorphic relations.
- Model::getPerPage() — Method in class Model
Get the number of models to return per page.
- Model::getForeignKey() — Method in class Model
Get the default foreign key name for the model.
- Model::getHidden() — Method in class Model
Get the hidden attributes for the model.
- Model::getFillable() — Method in class Model
Get the fillable attributes for the model.
- Model::getGuarded() — Method in class Model
get the guarded attributes for the model.
- Model::guard() — Method in class Model
Set the guarded attributes for the model.
- Model::getTouchedRelations() — Method in class Model
Get the relationships that are touched on save.
- Model::getIncrementing() — Method in class Model
Get the value indicating whether the IDs are incrementing.
- Model::getArrayableAttributes() — Method in class Model
Get an attribute array of all arrayable attributes.
- Model::getArrayableAppends() — Method in class Model
Get all of the appendable values that are arrayable.
- Model::getArrayableRelations() — Method in class Model
Get an attribute array of all arrayable relations.
- Model::getArrayableItems() — Method in class Model
Get an attribute array of all arrayable values.
- Model::getAttribute() — Method in class Model
Get an attribute from the model.
- Model::getAttributeValue() — Method in class Model
Get a plain attribute (not a relationship).
- Model::getAttributeFromArray() — Method in class Model
Get an attribute from the $attributes array.
- Model::getRelationshipFromMethod() — Method in class Model
Get a relationship value from a method.
- Model::getDates() — Method in class Model
Get the attributes that should be converted to dates.
- Model::getDateFormat() — Method in class Model
Get the format for database stored dates.
- Model::getAttributes() — Method in class Model
Get all of the current attributes on the model.
- Model::getOriginal() — Method in class Model
Get the model's original attribute values.
- Model::getDirty() — Method in class Model
Get the attributes that have been changed since last sync.
- Model::getRelations() — Method in class Model
Get all the loaded relations for the instance.
- Model::getRelation() — Method in class Model
Get a specified relationship.
- Model::getConnection() — Method in class Model
Get the database connection for the model.
- Model::getConnectionName() — Method in class Model
Get the current connection name for the model.
- Model::getConnectionResolver() — Method in class Model
Get the connection resolver instance.
- Model::getEventDispatcher() — Method in class Model
Get the event dispatcher instance.
- Model::getMutatedAttributes() — Method in class Model
Get the mutated attributes for a given instance.
- ModelNotFoundException::getModel() — Method in class ModelNotFoundException
Get the affected Eloquent model.
- BelongsTo::getResults() — Method in class BelongsTo
Get the results of the relationship.
- BelongsTo::getRelationCountQuery() — Method in class BelongsTo
Add the constraints for a relationship count query.
- BelongsTo::getEagerModelKeys() — Method in class BelongsTo
Gather the keys from an array of related models.
- BelongsTo::getForeignKey() — Method in class BelongsTo
Get the foreign key of the relationship.
- BelongsTo::getQualifiedForeignKey() — Method in class BelongsTo
Get the fully qualified foreign key of the relationship.
- BelongsTo::getOtherKey() — Method in class BelongsTo
Get the associated key of the relationship.
- BelongsTo::getQualifiedOtherKeyName() — Method in class BelongsTo
Get the fully qualified associated key of the relationship.
- BelongsToMany::getResults() — Method in class BelongsToMany
Get the results of the relationship.
- BelongsToMany::get() — Method in class BelongsToMany
Execute the query as a "select" statement.
- BelongsToMany::getRelationCountQuery() — Method in class BelongsToMany
Add the constraints for a relationship count query.
- BelongsToMany::getRelationCountQueryForSelfJoin() — Method in class BelongsToMany
Add the constraints for a relationship count query on the same table.
- BelongsToMany::getRelationCountHash() — Method in class BelongsToMany
Get a relationship join table hash.
- BelongsToMany::getSelectColumns() — Method in class BelongsToMany
Set the select clause for the relation query.
- BelongsToMany::getAliasedPivotColumns() — Method in class BelongsToMany
Get the pivot columns for the relation.
- BelongsToMany::getRelatedIds() — Method in class BelongsToMany
Get all of the IDs for the related models.
- BelongsToMany::getAttachId() — Method in class BelongsToMany
Get the attach record ID and extra attributes.
- BelongsToMany::guessInverseRelation() — Method in class BelongsToMany
Attempt to guess the name of the inverse of the relation.
- BelongsToMany::getRelatedFreshUpdate() — Method in class BelongsToMany
Get the related model's updated at column name.
- BelongsToMany::getHasCompareKey() — Method in class BelongsToMany
Get the key for comparing against the parent key in "has" query.
- BelongsToMany::getForeignKey() — Method in class BelongsToMany
Get the fully qualified foreign key for the relation.
- BelongsToMany::getOtherKey() — Method in class BelongsToMany
Get the fully qualified "other key" for the relation.
- BelongsToMany::getTable() — Method in class BelongsToMany
Get the intermediate table for the relationship.
- BelongsToMany::getRelationName() — Method in class BelongsToMany
Get the relationship name for the relationship.
- HasMany::getResults() — Method in class HasMany
Get the results of the relationship.
- HasManyThrough::getRelationCountQuery() — Method in class HasManyThrough
Add the constraints for a relationship count query.
- HasManyThrough::getResults() — Method in class HasManyThrough
Get the results of the relationship.
- HasManyThrough::get() — Method in class HasManyThrough
Execute the query as a "select" statement.
- HasManyThrough::getSelectColumns() — Method in class HasManyThrough
Set the select clause for the relation query.
- HasManyThrough::getHasCompareKey() — Method in class HasManyThrough
Get the key for comparing against the parent key in "has" query.
- HasOne::getResults() — Method in class HasOne
Get the results of the relationship.
- HasOneOrMany::getRelationValue() — Method in class HasOneOrMany
Get the value of a relationship by one or many type.
- HasOneOrMany::getHasCompareKey() — Method in class HasOneOrMany
Get the key for comparing against the parent key in "has" query.
- HasOneOrMany::getForeignKey() — Method in class HasOneOrMany
Get the foreign key for the relationship.
- HasOneOrMany::getPlainForeignKey() — Method in class HasOneOrMany
Get the plain foreign key.
- HasOneOrMany::getParentKey() — Method in class HasOneOrMany
Get the key value of the parent's local key.
- HasOneOrMany::getQualifiedParentKeyName() — Method in class HasOneOrMany
Get the fully qualified parent key name.
- MorphMany::getResults() — Method in class MorphMany
Get the results of the relationship.
- MorphOne::getResults() — Method in class MorphOne
Get the results of the relationship.
- MorphOneOrMany::getRelationCountQuery() — Method in class MorphOneOrMany
Get the relationship count query.
- MorphOneOrMany::getMorphType() — Method in class MorphOneOrMany
Get the foreign key "type" name.
- MorphOneOrMany::getPlainMorphType() — Method in class MorphOneOrMany
Get the plain morph type name without the table.
- MorphOneOrMany::getMorphClass() — Method in class MorphOneOrMany
Get the class name of the parent model.
- MorphTo::getEager() — Method in class MorphTo
Get the results of the relationship.
- MorphTo::getResultsByType() — Method in class MorphTo
Get all of the relation results for a type.
- MorphTo::gatherKeysByType() — Method in class MorphTo
Gather all of the foreign keys for a given type.
- MorphTo::getMorphType() — Method in class MorphTo
Get the foreign key "type" name.
- MorphTo::getDictionary() — Method in class MorphTo
Get the dictionary used by the relationship.
- MorphToMany::getRelationCountQuery() — Method in class MorphToMany
Add the constraints for a relationship count query.
- MorphToMany::getMorphType() — Method in class MorphToMany
Get the foreign key "type" name.
- MorphToMany::getMorphClass() — Method in class MorphToMany
Get the class name of the parent model.
- $ Pivot#guarded — Property in class Pivot
The attributes that aren't mass assignable.
- Pivot::getDeleteQuery() — Method in class Pivot
Get the query builder for a delete operation on the pivot.
- Pivot::getForeignKey() — Method in class Pivot
Get the foreign key column name.
- Pivot::getOtherKey() — Method in class Pivot
Get the "other key" column name.
- Pivot::getCreatedAtColumn() — Method in class Pivot
Get the name of the "created at" column.
- Pivot::getUpdatedAtColumn() — Method in class Pivot
Get the name of the "updated at" column.
- Relation::getResults() — Method in class Relation
Get the results of the relationship.
- Relation::getEager() — Method in class Relation
Get the relationship for eager loading.
- Relation::getRelationCountQuery() — Method in class Relation
Add the constraints for a relationship count query.
- Relation::getKeys() — Method in class Relation
Get all of the primary keys for an array of models.
- Relation::getQuery() — Method in class Relation
Get the underlying query for the relation.
- Relation::getBaseQuery() — Method in class Relation
Get the base query builder driving the Eloquent builder.
- Relation::getParent() — Method in class Relation
Get the parent model of the relation.
- Relation::getQualifiedParentKeyName() — Method in class Relation
Get the fully qualified parent key name.
- Relation::getRelated() — Method in class Relation
Get the related model of the relation.
- SoftDeletingScope::getDeletedAtColumn() — Method in class SoftDeletingScope
Get the "deleted at" column for the builder.
- SoftDeletingTrait::getDeletedAtColumn() — Method in class SoftDeletingTrait
Get the name of the "deleted at" column.
- SoftDeletingTrait::getQualifiedDeletedAtColumn() — Method in class SoftDeletingTrait
Get the fully qualified "deleted at" column.
- Grammar — Class in namespace Illuminate\Database
- Grammar::getValue() — Method in class Grammar
Get the value of a raw expression.
- Grammar::getDateFormat() — Method in class Grammar
Get the format for database stored dates.
- Grammar::getTablePrefix() — Method in class Grammar
Get the grammar's table prefix.
- DatabaseMigrationRepository::getRan() — Method in class DatabaseMigrationRepository
Get the ran migrations.
- DatabaseMigrationRepository::getLast() — Method in class DatabaseMigrationRepository
Get the last migration batch.
- DatabaseMigrationRepository::getNextBatchNumber() — Method in class DatabaseMigrationRepository
Get the next migration batch number.
- DatabaseMigrationRepository::getLastBatchNumber() — Method in class DatabaseMigrationRepository
Get the last migration batch number.
- DatabaseMigrationRepository::getConnectionResolver() — Method in class DatabaseMigrationRepository
Get the connection resolver instance.
- DatabaseMigrationRepository::getConnection() — Method in class DatabaseMigrationRepository
Resolve the database connection instance.
- Migration::getConnection() — Method in class Migration
Get the migration connection name.
- MigrationCreator::getStub() — Method in class MigrationCreator
Get the migration stub file.
- MigrationCreator::getClassName() — Method in class MigrationCreator
Get the class name of a migration name.
- MigrationCreator::getPath() — Method in class MigrationCreator
Get the full path name to the migration.
- MigrationCreator::getDatePrefix() — Method in class MigrationCreator
Get the date prefix for the migration.
- MigrationCreator::getStubPath() — Method in class MigrationCreator
Get the path to the stubs.
- MigrationCreator::getFilesystem() — Method in class MigrationCreator
Get the filesystem instance.
- MigrationRepositoryInterface::getRan() — Method in class MigrationRepositoryInterface
Get the ran migrations for a given package.
- MigrationRepositoryInterface::getLast() — Method in class MigrationRepositoryInterface
Get the last migration batch.
- MigrationRepositoryInterface::getNextBatchNumber() — Method in class MigrationRepositoryInterface
Get the next migration batch number.
- Migrator::getMigrationFiles() — Method in class Migrator
Get all of the migration files in a given path.
- Migrator::getQueries() — Method in class Migrator
Get all of the queries that would be run for a migration.
- Migrator::getNotes() — Method in class Migrator
Get the notes for the last operation.
- Migrator::getRepository() — Method in class Migrator
Get the migration repository instance.
- Migrator::getFilesystem() — Method in class Migrator
Get the file system instance.
- MySqlConnection::getSchemaBuilder() — Method in class MySqlConnection
Get a schema builder instance for the connection.
- MySqlConnection::getDefaultQueryGrammar() — Method in class MySqlConnection
Get the default query grammar instance.
- MySqlConnection::getDefaultSchemaGrammar() — Method in class MySqlConnection
Get the default schema grammar instance.
- MySqlConnection::getDefaultPostProcessor() — Method in class MySqlConnection
Get the default post processor instance.
- MySqlConnection::getDoctrineDriver() — Method in class MySqlConnection
Get the Doctrine DBAL driver.
- PostgresConnection::getDefaultQueryGrammar() — Method in class PostgresConnection
Get the default query grammar instance.
- PostgresConnection::getDefaultSchemaGrammar() — Method in class PostgresConnection
Get the default schema grammar instance.
- PostgresConnection::getDefaultPostProcessor() — Method in class PostgresConnection
Get the default post processor instance.
- PostgresConnection::getDoctrineDriver() — Method in class PostgresConnection
Get the Doctrine DBAL driver.
- QueryException::getSql() — Method in class QueryException
Get the SQL for the query.
- QueryException::getBindings() — Method in class QueryException
Get the bindings for the query.
- $ Builder#grammar — Property in class Builder
The database query grammar instance.
- $ Builder#groups — Property in class Builder
The groupings for the query.
- Builder::groupBy() — Method in class Builder
Add a "group by" clause to the query.
- Builder::get() — Method in class Builder
Execute the query as a "select" statement.
- Builder::getFresh() — Method in class Builder
Execute the query as a fresh "select" statement.
- Builder::getCached() — Method in class Builder
Execute the query as a cached "select" statement.
- Builder::getCache() — Method in class Builder
Get the cache object with tags assigned, if applicable.
- Builder::getCacheInfo() — Method in class Builder
Get the cache key and cache minutes as an array.
- Builder::getCacheKey() — Method in class Builder
Get a unique cache key for the complete query.
- Builder::generateCacheKey() — Method in class Builder
Generate the unique cache key for the query.
- Builder::getCacheCallback() — Method in class Builder
Get the Closure callback used when caching queries.
- Builder::getListSelect() — Method in class Builder
Get the columns that should be used in a list array.
- Builder::groupedPaginate() — Method in class Builder
Create a paginator for a grouped pagination statement.
- Builder::getPaginationCount() — Method in class Builder
Get the count of the total records for pagination.
- Builder::getBindings() — Method in class Builder
Get the current query value bindings in a flattened array.
- Builder::getRawBindings() — Method in class Builder
Get the raw array of bindings.
- Builder::getConnection() — Method in class Builder
Get the database connection instance.
- Builder::getProcessor() — Method in class Builder
Get the database query processor instance.
- Builder::getGrammar() — Method in class Builder
Get the query grammar instance.
- Expression::getValue() — Method in class Expression
Get the value of the expression.
- Grammar — Class in namespace Illuminate\Database\Query\Grammars
- SqlServerGrammar::getDateFormat() — Method in class SqlServerGrammar
Get the format for database stored dates.
- SQLiteConnection::getDefaultQueryGrammar() — Method in class SQLiteConnection
Get the default query grammar instance.
- SQLiteConnection::getDefaultSchemaGrammar() — Method in class SQLiteConnection
Get the default schema grammar instance.
- SQLiteConnection::getDefaultPostProcessor() — Method in class SQLiteConnection
Get the default post processor instance.
- SQLiteConnection::getDoctrineDriver() — Method in class SQLiteConnection
Get the Doctrine DBAL driver.
- Blueprint::getTable() — Method in class Blueprint
Get the table the blueprint describes.
- Blueprint::getColumns() — Method in class Blueprint
Get the columns that should be added.
- Blueprint::getCommands() — Method in class Blueprint
Get the commands on the blueprint.
- $ Builder#grammar — Property in class Builder
The schema grammar instance.
- Builder::getColumnListing() — Method in class Builder
Get the column listing for a given table.
- Builder::getConnection() — Method in class Builder
Get the database connection instance.
- Grammar — Class in namespace Illuminate\Database\Schema\Grammars
- Grammar::getRenamedDiff() — Method in class Grammar
Get a new column instance with the new column name.
- Grammar::getColumns() — Method in class Grammar
Compile the blueprint's column definitions.
- Grammar::getCommandByName() — Method in class Grammar
Get the primary key command if it exists on the blueprint.
- Grammar::getCommandsByName() — Method in class Grammar
Get all of the commands with a given name.
- Grammar::getType() — Method in class Grammar
Get the SQL for the column data type.
- Grammar::getDefaultValue() — Method in class Grammar
Format a value so that it can be used in "default" clauses.
- Grammar::getDoctrineTableDiff() — Method in class Grammar
Create an empty Doctrine DBAL TableDiff from the Blueprint.
- SQLiteGrammar::getForeignKey() — Method in class SQLiteGrammar
Get the SQL for the foreign key.
- MySqlBuilder::getColumnListing() — Method in class MySqlBuilder
Get the column listing for a given table.
- SqlServerConnection::getDefaultQueryGrammar() — Method in class SqlServerConnection
Get the default query grammar instance.
- SqlServerConnection::getDefaultSchemaGrammar() — Method in class SqlServerConnection
Get the default schema grammar instance.
- SqlServerConnection::getDefaultPostProcessor() — Method in class SqlServerConnection
Get the default post processor instance.
- SqlServerConnection::getDoctrineDriver() — Method in class SqlServerConnection
Get the Doctrine DBAL Driver.
- Encrypter::getJsonPayload() — Method in class Encrypter
Get the JSON array from the given payload.
- Encrypter::getIvSize() — Method in class Encrypter
Get the IV size for the cipher.
- Encrypter::getRandomizer() — Method in class Encrypter
Get the random data source available for the OS.
- Dispatcher::getListeners() — Method in class Dispatcher
Get all of the listeners for a given event name.
- Dispatcher::getWildcardListeners() — Method in class Dispatcher
Get the wildcard listeners for the event.
- Filesystem::get() — Method in class Filesystem
Get the contents of a file.
- Filesystem::getRequire() — Method in class Filesystem
Get the returned value of a file.
- Filesystem::glob() — Method in class Filesystem
Find path names matching a given pattern.
- AliasLoader::getInstance() — Method in class AliasLoader
Get or create the singleton alias loader instance.
- AliasLoader::getAliases() — Method in class AliasLoader
Get the registered aliases.
- Application::getBootstrapFile() — Method in class Application
Get the application bootstrap file.
- Application::getRegistered() — Method in class Application
Get the registered service provider instance if it exists.
- Application::getStackedClient() — Method in class Application
Get the stacked HTTP kernel for the application.
- Application::getConfigLoader() — Method in class Application
Get the configuration loader instance.
- Application::getEnvironmentVariablesLoader() — Method in class Application
Get the environment variables loader instance.
- Application::getProviderRepository() — Method in class Application
Get the service provider repository instance.
- Application::getLoadedProviders() — Method in class Application
Get the service providers that have been loaded.
- Application::getLocale() — Method in class Application
Get the current application locale.
- Artisan::getArtisan() — Method in class Artisan
Get the Artisan console instance.
- Composer::getProcess() — Method in class Composer
Get a new Symfony process instance.
- ConfigPublisher::getSource() — Method in class ConfigPublisher
Get the source configuration directory to publish.
- ConfigPublisher::getDestinationPath() — Method in class ConfigPublisher
Get the target destination path for the configuration files.
- AssetPublishCommand::getPackages() — Method in class AssetPublishCommand
Get the name of the package being published.
- AssetPublishCommand::getPath() — Method in class AssetPublishCommand
Get the specified path to the files.
- AssetPublishCommand::getArguments() — Method in class AssetPublishCommand
Get the console command arguments.
- AssetPublishCommand::getOptions() — Method in class AssetPublishCommand
Get the console command options.
- AutoloadCommand::getWorkbenchComposers() — Method in class AutoloadCommand
Get all of the workbench composer files.
- ChangesCommand::getChangeVersion() — Method in class ChangesCommand
Get the change list for the specified version.
- ChangesCommand::getChangesArray() — Method in class ChangesCommand
Get the changes array from disk.
- ChangesCommand::getArguments() — Method in class ChangesCommand
Get the console command arguments.
- CommandMakeCommand::getPath() — Method in class CommandMakeCommand
Get the path where the command should be stored.
- CommandMakeCommand::getArguments() — Method in class CommandMakeCommand
Get the console command arguments.
- CommandMakeCommand::getOptions() — Method in class CommandMakeCommand
Get the console command options.
- ConfigPublishCommand::getPath() — Method in class ConfigPublishCommand
Get the specified path to the files.
- ConfigPublishCommand::getArguments() — Method in class ConfigPublishCommand
Get the console command arguments.
- ConfigPublishCommand::getOptions() — Method in class ConfigPublishCommand
Get the console command options.
- KeyGenerateCommand::getKeyFile() — Method in class KeyGenerateCommand
Get the key file and contents.
- KeyGenerateCommand::getRandomKey() — Method in class KeyGenerateCommand
Generate a random key for the application.
- MigratePublishCommand::getSourcePath() — Method in class MigratePublishCommand
Get the path to the source files.
- MigratePublishCommand::getArguments() — Method in class MigratePublishCommand
Get the console command arguments.
- OptimizeCommand::getClassFiles() — Method in class OptimizeCommand
Get the classes that should be combined and compiled.
- OptimizeCommand::getOptions() — Method in class OptimizeCommand
Get the console command options.
- RoutesCommand::getRoutes() — Method in class RoutesCommand
Compile the routes into a displayable format.
- RoutesCommand::getRouteInformation() — Method in class RoutesCommand
Get the route information for a given route.
- RoutesCommand::getBeforeFilters() — Method in class RoutesCommand
Get before filters
- RoutesCommand::getPatternFilters() — Method in class RoutesCommand
Get all of the pattern filters matching the route.
- RoutesCommand::getMethodPatterns() — Method in class RoutesCommand
Get the pattern filters for a given URI and method.
- RoutesCommand::getAfterFilters() — Method in class RoutesCommand
Get after filters
- RoutesCommand::getOptions() — Method in class RoutesCommand
Get the console command options.
- ServeCommand::getOptions() — Method in class ServeCommand
Get the console command options.
- TailCommand::getRemote() — Method in class TailCommand
Get a connection to the remote server.
- TailCommand::getPath() — Method in class TailCommand
Get the path to the Laravel log file.
- TailCommand::getRoot() — Method in class TailCommand
Get the path to the Laravel install root.
- TailCommand::getArguments() — Method in class TailCommand
Get the console command arguments.
- TailCommand::getOptions() — Method in class TailCommand
Get the console command options.
- ViewPublishCommand::getPath() — Method in class ViewPublishCommand
Get the specified path to the files.
- ViewPublishCommand::getArguments() — Method in class ViewPublishCommand
Get the console command arguments.
- ViewPublishCommand::getOptions() — Method in class ViewPublishCommand
Get the console command options.
- EnvironmentDetector::getEnvironmentArgument() — Method in class EnvironmentDetector
Get the environment argument from the console.
- MigrationPublisher::getFreshMigrations() — Method in class MigrationPublisher
Get the fresh migrations for the source.
- MigrationPublisher::getExistingMigrationNames() — Method in class MigrationPublisher
Get the existing migration names from the destination.
- MigrationPublisher::getPackageMigrations() — Method in class MigrationPublisher
Get the file list from the source directory.
- MigrationPublisher::getNewMigrationName() — Method in class MigrationPublisher
Get the new migration name.
- ProviderRepository::getFilesystem() — Method in class ProviderRepository
Get the filesystem instance.
- Client::getRequestParameters() — Method in class Client
Get the request parameters from a BrowserKit request.
- ViewPublisher::getSource() — Method in class ViewPublisher
Get the source views directory to publish.
- FormBuilder::getSelectOption() — Method in class FormBuilder
Get the select option for the given value.
- FormBuilder::getSelectedValue() — Method in class FormBuilder
Determine if the value is selected.
- FormBuilder::getCheckedState() — Method in class FormBuilder
Get the check state for a checkable input.
- FormBuilder::getCheckboxCheckedState() — Method in class FormBuilder
Get the check state for a checkbox input.
- FormBuilder::getRadioCheckedState() — Method in class FormBuilder
Get the check state for a radio input.
- FormBuilder::getMethod() — Method in class FormBuilder
Parse the form action method.
- FormBuilder::getAction() — Method in class FormBuilder
Get the form action from the options.
- FormBuilder::getUrlAction() — Method in class FormBuilder
Get the action for a "url" option.
- FormBuilder::getRouteAction() — Method in class FormBuilder
Get the action for a "route" option.
- FormBuilder::getControllerAction() — Method in class FormBuilder
Get the action for an "action" option.
- FormBuilder::getAppendage() — Method in class FormBuilder
Get the form appendage for the given method.
- FormBuilder::getIdAttribute() — Method in class FormBuilder
Get the ID attribute for a field name.
- FormBuilder::getValueAttribute() — Method in class FormBuilder
Get the value that should be assigned to the field.
- FormBuilder::getModelValueAttribute() — Method in class FormBuilder
Get the model value that should be assigned to the field.
- FormBuilder::getSessionStore() — Method in class FormBuilder
Get the session store implementation.
- JsonResponse::getData() — Method in class JsonResponse
Get the json_decoded data from the response
- JsonResponse::getJsonOptions() — Method in class JsonResponse
Get the JSON encoding options.
- RedirectResponse::getRequest() — Method in class RedirectResponse
Get the request instance.
- RedirectResponse::getSession() — Method in class RedirectResponse
Get the session store implementation.
- Request::getInputSource() — Method in class Request
Get the input source for the request.
- Response::getOriginalContent() — Method in class Response
Get the original response content.
- Writer::getDefaultFormatter() — Method in class Writer
Get a default Monolog formatter instance.
- Writer::getMonolog() — Method in class Writer
Get the underlying Monolog instance.
- Writer::getEventDispatcher() — Method in class Writer
Get the event dispatcher instance.
- Mailer::getQueuedCallable() — Method in class Mailer
Get the true callable for a queued e-mail message.
- Mailer::getView() — Method in class Mailer
Render the given view.
- Mailer::getViewFactory() — Method in class Mailer
Get the view factory instance.
- Mailer::getSwiftMailer() — Method in class Mailer
Get the Swift Mailer instance.
- Message::getSwiftMessage() — Method in class Message
Get the underlying Swift Message instance.
- LogTransport::getMimeEntityString() — Method in class LogTransport
Get a loggable string out of a Swiftmailer entity.
- MailgunTransport::getTo() — Method in class MailgunTransport
Get the "to" payload field for the API request.
- MailgunTransport::getHttpClient() — Method in class MailgunTransport
Get a new HTTP client instance.
- MailgunTransport::getKey() — Method in class MailgunTransport
Get the API key being used by the transport.
- MailgunTransport::getDomain() — Method in class MailgunTransport
Get the domain being used by the transport.
- MandrillTransport::getHttpClient() — Method in class MandrillTransport
Get a new HTTP client instance.
- MandrillTransport::getKey() — Method in class MandrillTransport
Get the API key being used by the transport.
- BootstrapPresenter::getPageLinkWrapper() — Method in class BootstrapPresenter
Get HTML wrapper for a page link.
- BootstrapPresenter::getDisabledTextWrapper() — Method in class BootstrapPresenter
Get HTML wrapper for disabled text.
- BootstrapPresenter::getActivePageWrapper() — Method in class BootstrapPresenter
Get HTML wrapper for active text.
- Factory::getPaginationView() — Method in class Factory
Get the pagination view.
- Factory::getCurrentPage() — Method in class Factory
Get the number of the current page.
- Factory::getCurrentUrl() — Method in class Factory
Get the root URL for the request.
- Factory::getPageName() — Method in class Factory
Get the input page parameter name used by the paginator.
- Factory::getViewName() — Method in class Factory
Get the name of the pagination view.
- Factory::getLocale() — Method in class Factory
Get the locale of the paginator.
- Factory::getRequest() — Method in class Factory
Get the active request instance.
- Factory::getViewFactory() — Method in class Factory
Get the current view factory.
- Factory::getTranslator() — Method in class Factory
Get the translator instance.
- Paginator::getUrl() — Method in class Paginator
Get a URL for a given page number.
- Paginator::getCurrentPage() — Method in class Paginator
Get the current page for the request.
- Paginator::getLastPage() — Method in class Paginator
Get the last page that should be available.
- Paginator::getFrom() — Method in class Paginator
Get the number of the first item on the paginator.
- Paginator::getTo() — Method in class Paginator
Get the number of the last item on the paginator.
- Paginator::getPerPage() — Method in class Paginator
Get the number of items to be displayed per page.
- Paginator::getCollection() — Method in class Paginator
Get a collection instance containing the items.
- Paginator::getItems() — Method in class Paginator
Get the items being paginated.
- Paginator::getTotal() — Method in class Paginator
Get the total number of items in the collection.
- Paginator::getFactory() — Method in class Paginator
Get the pagination factory.
- Paginator::getIterator() — Method in class Paginator
Get an iterator for the items.
- Presenter::getPageLinkWrapper() — Method in class Presenter
Get HTML wrapper for a page link.
- Presenter::getDisabledTextWrapper() — Method in class Presenter
Get HTML wrapper for disabled text.
- Presenter::getActivePageWrapper() — Method in class Presenter
Get HTML wrapper for active text.
- Presenter::getPageRange() — Method in class Presenter
Create a range of pagination links.
- Presenter::getPageSlider() — Method in class Presenter
Create a pagination slider link window.
- Presenter::getAdjacentRange() — Method in class Presenter
Get the page range for the current page window.
- Presenter::getStart() — Method in class Presenter
Create the beginning leader of a pagination slider.
- Presenter::getFinish() — Method in class Presenter
Create the ending cap of a pagination slider.
- Presenter::getPrevious() — Method in class Presenter
Get the previous page pagination element.
- Presenter::getNext() — Method in class Presenter
Get the next page pagination element.
- Presenter::getDots() — Method in class Presenter
Get a pagination "dot" element.
- Presenter::getLink() — Method in class Presenter
Create a pagination slider link.
- BeanstalkdQueue::getQueue() — Method in class BeanstalkdQueue
Get the queue or return the default.
- BeanstalkdQueue::getPheanstalk() — Method in class BeanstalkdQueue
Get the underlying Pheanstalk instance.
- Manager::getConnection() — Method in class Manager
Get a registered connection instance.
- Manager::getQueueManager() — Method in class Manager
Get the queue manager instance.
- ForgetFailedCommand::getArguments() — Method in class ForgetFailedCommand
Get the console command arguments.
- ListenCommand::getQueue() — Method in class ListenCommand
Get the name of the queue connection to listen on.
- ListenCommand::getArguments() — Method in class ListenCommand
Get the console command arguments.
- ListenCommand::getOptions() — Method in class ListenCommand
Get the console command options.
- RetryCommand::getArguments() — Method in class RetryCommand
Get the console command arguments.
- SubscribeCommand::getQueueOptions() — Method in class SubscribeCommand
Get the queue options.
- SubscribeCommand::getPushType() — Method in class SubscribeCommand
Get the push type for the queue.
- SubscribeCommand::getSubscriberList() — Method in class SubscribeCommand
Get the current subscribers for the queue.
- SubscribeCommand::getCurrentSubscribers() — Method in class SubscribeCommand
Get the current subscriber list.
- SubscribeCommand::getQueue() — Method in class SubscribeCommand
Get the queue information from Iron.io.
- SubscribeCommand::getArguments() — Method in class SubscribeCommand
Get the console command arguments.
- SubscribeCommand::getOptions() — Method in class SubscribeCommand
Get the console command options.
- WorkCommand::getArguments() — Method in class WorkCommand
Get the console command arguments.
- WorkCommand::getOptions() — Method in class WorkCommand
Get the console command options.
- DatabaseFailedJobProvider::getTable() — Method in class DatabaseFailedJobProvider
Get a new query builder instance for the table.
- IronQueue::getQueue() — Method in class IronQueue
Get the queue or return the default.
- IronQueue::getIron() — Method in class IronQueue
Get the underlying IronMQ instance.
- IronQueue::getRequest() — Method in class IronQueue
Get the request instance.
- BeanstalkdJob::getRawBody() — Method in class BeanstalkdJob
Get the raw body string for the job.
- BeanstalkdJob::getJobId() — Method in class BeanstalkdJob
Get the job identifier.
- BeanstalkdJob::getContainer() — Method in class BeanstalkdJob
Get the IoC container instance.
- BeanstalkdJob::getPheanstalk() — Method in class BeanstalkdJob
Get the underlying Pheanstalk instance.
- BeanstalkdJob::getPheanstalkJob() — Method in class BeanstalkdJob
Get the underlying Pheanstalk job.
- IronJob::getRawBody() — Method in class IronJob
Get the raw body string for the job.
- IronJob::getJobId() — Method in class IronJob
Get the job identifier.
- IronJob::getContainer() — Method in class IronJob
Get the IoC container instance.
- IronJob::getIron() — Method in class IronJob
Get the underlying Iron queue instance.
- IronJob::getIronJob() — Method in class IronJob
Get the underlying IronMQ job.
- IronJob::getQueue() — Method in class IronJob
Get the name of the queue the job belongs to.
- Job::getRawBody() — Method in class Job
Get the raw body string for the job.
- Job::getSeconds() — Method in class Job
Calculate the number of seconds with the given delay.
- Job::getTime() — Method in class Job
Get the current system time.
- Job::getName() — Method in class Job
Get the name of the queued job class.
- Job::getQueue() — Method in class Job
Get the name of the queue the job belongs to.
- RedisJob::getRawBody() — Method in class RedisJob
Get the raw body string for the job.
- RedisJob::getJobId() — Method in class RedisJob
Get the job identifier.
- RedisJob::getContainer() — Method in class RedisJob
Get the IoC container instance.
- RedisJob::getRedisQueue() — Method in class RedisJob
Get the underlying queue driver instance.
- RedisJob::getRedisJob() — Method in class RedisJob
Get the underlying Redis job.
- SqsJob::getRawBody() — Method in class SqsJob
Get the raw body string for the job.
- SqsJob::getJobId() — Method in class SqsJob
Get the job identifier.
- SqsJob::getContainer() — Method in class SqsJob
Get the IoC container instance.
- SqsJob::getSqs() — Method in class SqsJob
Get the underlying SQS client instance.
- SqsJob::getSqsJob() — Method in class SqsJob
Get the underlying raw SQS job.
- SyncJob::getRawBody() — Method in class SyncJob
Get the raw body string for the job.
- SyncJob::getJobId() — Method in class SyncJob
Get the job identifier.
- Listener::getEnvironment() — Method in class Listener
Get the current listener environment.
- Listener::getSleep() — Method in class Listener
Get the amount of seconds to wait before polling the queue.
- Queue::getSeconds() — Method in class Queue
Calculate the number of seconds with the given delay.
- Queue::getTime() — Method in class Queue
Get the current UNIX timestamp.
- QueueManager::getConnector() — Method in class QueueManager
Get the connector for a given driver.
- QueueManager::getConfig() — Method in class QueueManager
Get the queue connection configuration.
- QueueManager::getDefaultDriver() — Method in class QueueManager
Get the name of the default queue connection.
- QueueManager::getName() — Method in class QueueManager
Get the full name for the given connection.
- RedisQueue::getExpiredJobs() — Method in class RedisQueue
Get the expired jobs from a given queue.
- RedisQueue::getRandomId() — Method in class RedisQueue
Get a random ID string.
- RedisQueue::getQueue() — Method in class RedisQueue
Get the queue or return the default.
- RedisQueue::getConnection() — Method in class RedisQueue
Get the connection for the queue.
- RedisQueue::getRedis() — Method in class RedisQueue
Get the underlying Redis instance.
- RedisQueue::getExpire() — Method in class RedisQueue
Get the expiration time in seconds.
- SqsQueue::getQueue() — Method in class SqsQueue
Get the queue or return the default.
- SqsQueue::getSqs() — Method in class SqsQueue
Get the underlying SQS instance.
- Worker::getNextJob() — Method in class Worker
Get the next job from the queue connection.
- Worker::getTimestampOfLastQueueRestart() — Method in class Worker
Get the last queue restart timestamp, or null.
- Worker::getManager() — Method in class Worker
Get the queue manager instance.
- $ Connection#gateway — Property in class Connection
The SSH gateway implementation.
- Connection::get() — Method in class Connection
Download the contents of a remote file.
- Connection::getString() — Method in class Connection
Get the contents of a remote file.
- Connection::getCallback() — Method in class Connection
Get the display callback for the connection.
- Connection::getGateway() — Method in class Connection
Get the gateway implementation.
- Connection::getOutput() — Method in class Connection
Get the output implementation for the connection.
- GatewayInterface — Class in namespace Illuminate\Remote
- RemoteManager::group() — Method in class RemoteManager
Get a connection group instance by name.
- RemoteManager::getAuth() — Method in class RemoteManager
Format the appropriate authentication array payload.
- RemoteManager::getConfig() — Method in class RemoteManager
Get the configuration for a remote server.
- RemoteManager::getDefaultConnection() — Method in class RemoteManager
Get the default connection name.
- SecLibGateway::get() — Method in class SecLibGateway
Download the contents of a remote file.
- SecLibGateway::getString() — Method in class SecLibGateway
Get the contents of a remote file.
- SecLibGateway::getAuthForLogin() — Method in class SecLibGateway
Get the authentication object for login.
- SecLibGateway::getKey() — Method in class SecLibGateway
Create a new RSA key instance.
- SecLibGateway::getAgent() — Method in class SecLibGateway
Get a new SSH Agent instance.
- SecLibGateway::getNewKey() — Method in class SecLibGateway
Get a new RSA key instance.
- SecLibGateway::getHost() — Method in class SecLibGateway
Get the host used by the gateway.
- SecLibGateway::getPort() — Method in class SecLibGateway
Get the port used by the gateway.
- SecLibGateway::getConnection() — Method in class SecLibGateway
Get the underlying Net_SFTP connection.
- $ MakeControllerCommand#generator — Property in class MakeControllerCommand
The controller generator instance.
- MakeControllerCommand::generateController() — Method in class MakeControllerCommand
Generate a new resourceful controller file.
- MakeControllerCommand::getPath() — Method in class MakeControllerCommand
Get the path in which to store the controller.
- MakeControllerCommand::getWorkbenchPath() — Method in class MakeControllerCommand
Get the workbench path for the controller.
- MakeControllerCommand::getBuildOptions() — Method in class MakeControllerCommand
Get the options for controller generation.
- MakeControllerCommand::getArguments() — Method in class MakeControllerCommand
Get the console command arguments.
- MakeControllerCommand::getOptions() — Method in class MakeControllerCommand
Get the console command options.
- Controller::getBeforeFilters() — Method in class Controller
Get the registered "before" filters.
- Controller::getAfterFilters() — Method in class Controller
Get the registered "after" filters.
- Controller::getFilterer() — Method in class Controller
Get the route filterer implementation.
- ControllerDispatcher::getAssignableAfter() — Method in class ControllerDispatcher
Get the assignable after filter for the route.
- ControllerInspector::getRoutable() — Method in class ControllerInspector
Get the routable methods for a controller.
- ControllerInspector::getMethodData() — Method in class ControllerInspector
Get the method data for a given method.
- ControllerInspector::getIndexData() — Method in class ControllerInspector
Get the routable data for an index method.
- ControllerInspector::getVerb() — Method in class ControllerInspector
Extract the verb from a controller action.
- ControllerInspector::getPlainUri() — Method in class ControllerInspector
Determine the URI from the given method name.
- ControllerGenerator::getDirectory() — Method in class ControllerGenerator
Get the directory the controller should live in.
- ControllerGenerator::getController() — Method in class ControllerGenerator
Get the controller class stub.
- ControllerGenerator::getMethodStubs() — Method in class ControllerGenerator
Get all of the method stubs for the given options.
- ControllerGenerator::getMethods() — Method in class ControllerGenerator
Get the applicable methods based on the options.
- $ Redirector#generator — Property in class Redirector
The URL generator instance.
- Redirector::guest() — Method in class Redirector
Create a new redirect response, while putting the current URL in the session.
- Redirector::getUrlGenerator() — Method in class Redirector
Get the URL generator instance.
- Route::getParameter() — Method in class Route
Get a given parameter from the route.
- Route::getValidators() — Method in class Route
Get the route validators for the instance.
- Route::getPath() — Method in class Route
Get the URI associated with the route.
- Route::getMethods() — Method in class Route
Get the HTTP verbs the route responds to.
- Route::getUri() — Method in class Route
Get the URI that the route responds to.
- Route::getPrefix() — Method in class Route
Get the prefix of the route instance.
- Route::getName() — Method in class Route
Get the name of the route instance.
- Route::getActionName() — Method in class Route
Get the action name for the route.
- Route::getAction() — Method in class Route
Get the action array for the route.
- Route::getCompiled() — Method in class Route
Get the compiled version of the route.
- RouteCollection::getOtherMethodsRoute() — Method in class RouteCollection
Get a route (if necessary) that responds when other available methods are present.
- RouteCollection::get() — Method in class RouteCollection
Get all of the routes in the collection.
- RouteCollection::getByName() — Method in class RouteCollection
Get a route instance by its name.
- RouteCollection::getByAction() — Method in class RouteCollection
Get a route instance by its controller action.
- RouteCollection::getRoutes() — Method in class RouteCollection
Get all of the routes in the collection.
- RouteCollection::getIterator() — Method in class RouteCollection
Get an iterator for the items.
- $ Router#groupStack — Property in class Router
The route group attribute stack.
- Router::get() — Method in class Router
Register a new GET route with the router.
- Router::getResourcePrefix() — Method in class Router
Extract the resource and prefix from a resource name.
- Router::getResourceMethods() — Method in class Router
Get the applicable resource methods.
- Router::getResourceUri() — Method in class Router
Get the base resource URI for a given resource.
- Router::getNestedResourceUri() — Method in class Router
Get the URI for a nested resource segment array.
- Router::getResourceAction() — Method in class Router
Get the action array for a resource route.
- Router::getResourceName() — Method in class Router
Get the name for a given resource.
- Router::getGroupResourceName() — Method in class Router
Get the resource name for a grouped resource.
- Router::getResourceWildcard() — Method in class Router
Format a resource wildcard for usage.
- Router::group() — Method in class Router
Create a route group with shared attributes.
- Router::getLastGroupPrefix() — Method in class Router
Get the prefix from the last group on the stack.
- Router::getControllerAction() — Method in class Router
Add a controller based route action to the action array.
- Router::getClassClosure() — Method in class Router
Get the Closure for a controller based action.
- Router::getCurrentRoute() — Method in class Router
Get the currently dispatched route instance.
- Router::getCurrentRequest() — Method in class Router
Get the request currently being dispatched.
- Router::getRoutes() — Method in class Router
Get the underlying route collection.
- Router::getControllerDispatcher() — Method in class Router
Get the controller dispatcher instance.
- Router::getInspector() — Method in class Router
Get a controller inspector instance.
- Router::getPatterns() — Method in class Router
Get the global "where" patterns.
- UrlGenerator::getScheme() — Method in class UrlGenerator
Get the scheme for a raw URL.
- UrlGenerator::getRouteQueryString() — Method in class UrlGenerator
Get the query string for a given route.
- UrlGenerator::getStringParameters() — Method in class UrlGenerator
Get the string parameters from a given list.
- UrlGenerator::getNumericParameters() — Method in class UrlGenerator
Get the numeric parameters from a given list.
- UrlGenerator::getRouteDomain() — Method in class UrlGenerator
Get the formatted domain for a given route.
- UrlGenerator::getDomainAndScheme() — Method in class UrlGenerator
Get the domain and scheme for the route.
- UrlGenerator::getRouteRoot() — Method in class UrlGenerator
Get the root of the route URL.
- UrlGenerator::getRouteScheme() — Method in class UrlGenerator
Get the scheme for the given route.
- UrlGenerator::getRootUrl() — Method in class UrlGenerator
Get the base URL for the request.
- UrlGenerator::getRequest() — Method in class UrlGenerator
Get the request instance.
- CacheBasedSessionHandler::gc() — Method in class CacheBasedSessionHandler
- {@inheritDoc}
- CacheBasedSessionHandler::getCache() — Method in class CacheBasedSessionHandler
Get the underlying cache repository.
- CookieSessionHandler::gc() — Method in class CookieSessionHandler
- {@inheritDoc}
- DatabaseSessionHandler::gc() — Method in class DatabaseSessionHandler
- {@inheritDoc}
- DatabaseSessionHandler::getQuery() — Method in class DatabaseSessionHandler
Get a fresh query builder instance for the table.
- FileSessionHandler::gc() — Method in class FileSessionHandler
- {@inheritDoc}
- Middleware::getUrl() — Method in class Middleware
Get the full URL for the request.
- Middleware::getLifetimeSeconds() — Method in class Middleware
Get the session lifetime in seconds.
- Middleware::getCookieLifetime() — Method in class Middleware
Get the cookie lifetime in seconds.
- Middleware::getSession() — Method in class Middleware
Get the session implementation from the manager.
- SessionInterface::getHandler() — Method in class SessionInterface
Get the session handler instance.
- SessionManager::getDatabaseConnection() — Method in class SessionManager
Get the database connection for the database driver.
- SessionManager::getSessionConfig() — Method in class SessionManager
Get the session configuration.
- SessionManager::getDefaultDriver() — Method in class SessionManager
Get the default session driver name.
- Store::getId() — Method in class Store
- {@inheritdoc}
- Store::generateSessionId() — Method in class Store
Get a new, random session ID.
- Store::getName() — Method in class Store
- {@inheritdoc}
- Store::get() — Method in class Store
- {@inheritdoc}
- Store::getOldInput() — Method in class Store
Get the requested item from the flashed input array.
- Store::getBag() — Method in class Store
- {@inheritdoc}
- Store::getMetadataBag() — Method in class Store
- {@inheritdoc}
- Store::getBagData() — Method in class Store
Get the raw bag data array for a given bag.
- Store::getToken() — Method in class Store
Get the CSRF token value.
- Store::getHandler() — Method in class Store
Get the underlying session handler implementation.
- Arr::get() — Method in class Arr
Get an item from an array using "dot" notation.
- ClassLoader::getDirectories() — Method in class ClassLoader
Gets all the directories registered with the loader.
- Collection::get() — Method in class Collection
Get an item from the collection by key.
- Collection::groupBy() — Method in class Collection
Group an associative array by a field or Closure value.
- Collection::getGroupByKey() — Method in class Collection
Get the "group by" key value.
- Collection::getIterator() — Method in class Collection
Get an iterator for the items.
- Collection::getCachingIterator() — Method in class Collection
Get a CachingIterator instance.
- Collection::getArrayableItems() — Method in class Collection
Results array of items from Collection or ArrayableInterface.
- MessageProviderInterface::getMessageBag() — Method in class MessageProviderInterface
Get the messages for the instance.
- App::getFacadeAccessor() — Method in class App
Get the registered name of the component.
- Artisan::getFacadeAccessor() — Method in class Artisan
Get the registered name of the component.
- Auth::getFacadeAccessor() — Method in class Auth
Get the registered name of the component.
- Blade::getFacadeAccessor() — Method in class Blade
Get the registered name of the component.
- Cache::getFacadeAccessor() — Method in class Cache
Get the registered name of the component.
- Config::getFacadeAccessor() — Method in class Config
Get the registered name of the component.
- Cookie::get() — Method in class Cookie
Retrieve a cookie from the request.
- Cookie::getFacadeAccessor() — Method in class Cookie
Get the registered name of the component.
- Crypt::getFacadeAccessor() — Method in class Crypt
Get the registered name of the component.
- DB::getFacadeAccessor() — Method in class DB
Get the registered name of the component.
- Event::getFacadeAccessor() — Method in class Event
Get the registered name of the component.
- Facade::getMockableClass() — Method in class Facade
Get the mockable class for the bound instance.
- Facade::getFacadeRoot() — Method in class Facade
Get the root object behind the facade.
- Facade::getFacadeAccessor() — Method in class Facade
Get the registered name of the component.
- Facade::getFacadeApplication() — Method in class Facade
Get the application instance behind the facade.
- File::getFacadeAccessor() — Method in class File
Get the registered name of the component.
- Form::getFacadeAccessor() — Method in class Form
Get the registered name of the component.
- HTML::getFacadeAccessor() — Method in class HTML
Get the registered name of the component.
- Hash::getFacadeAccessor() — Method in class Hash
Get the registered name of the component.
- Input::get() — Method in class Input
Get an item from the input data.
- Input::getFacadeAccessor() — Method in class Input
Get the registered name of the component.
- Lang::getFacadeAccessor() — Method in class Lang
Get the registered name of the component.
- Log::getFacadeAccessor() — Method in class Log
Get the registered name of the component.
- Mail::getFacadeAccessor() — Method in class Mail
Get the registered name of the component.
- Paginator::getFacadeAccessor() — Method in class Paginator
Get the registered name of the component.
- Password::getFacadeAccessor() — Method in class Password
Get the registered name of the component.
- Queue::getFacadeAccessor() — Method in class Queue
Get the registered name of the component.
- Redirect::getFacadeAccessor() — Method in class Redirect
Get the registered name of the component.
- Redis::getFacadeAccessor() — Method in class Redis
Get the registered name of the component.
- Request::getFacadeAccessor() — Method in class Request
Get the registered name of the component.
- Route::getFacadeAccessor() — Method in class Route
Get the registered name of the component.
- SSH::getFacadeAccessor() — Method in class SSH
Get the registered name of the component.
- Schema::getFacadeAccessor() — Method in class Schema
Get the registered name of the component.
- Session::getFacadeAccessor() — Method in class Session
Get the registered name of the component.
- URL::getFacadeAccessor() — Method in class URL
Get the registered name of the component.
- Validator::getFacadeAccessor() — Method in class Validator
Get the registered name of the component.
- View::getFacadeAccessor() — Method in class View
Get the registered name of the component.
- Fluent::get() — Method in class Fluent
Get an attribute from the container.
- Fluent::getAttributes() — Method in class Fluent
Get the attributes from the container.
- Manager::getDefaultDriver() — Method in class Manager
Get the default driver name.
- Manager::getDrivers() — Method in class Manager
Get all of the created "drivers".
- MessageBag::get() — Method in class MessageBag
Get all of the messages from the bag for a given key.
- MessageBag::getMessages() — Method in class MessageBag
Get the raw messages in the container.
- MessageBag::getMessageBag() — Method in class MessageBag
Get the messages for the instance.
- MessageBag::getFormat() — Method in class MessageBag
Get the default message format.
- SerializableClosure::getCode() — Method in class SerializableClosure
Returns the code of the closure being serialized
- SerializableClosure::getVariables() — Method in class SerializableClosure
Returns the "used" variables of the closure being serialized
- ServiceProvider::guessPackagePath() — Method in class ServiceProvider
Guess the package path for the provider.
- ServiceProvider::getPackageNamespace() — Method in class ServiceProvider
Determine the namespace for a package.
- ServiceProvider::getAppViewPath() — Method in class ServiceProvider
Get the application package view path.
- CapsuleManagerTrait::getContainer() — Method in class CapsuleManagerTrait
Get the IoC container instance.
- ViewErrorBag::getBag() — Method in class ViewErrorBag
Get a MessageBag instance from the bags.
- ViewErrorBag::getBags() — Method in class ViewErrorBag
Get all the bags.
- Translator::get() — Method in class Translator
Get the translation for the given key.
- Translator::getLine() — Method in class Translator
Retrieve a language line out the loaded array.
- Translator::getSelector() — Method in class Translator
Get the message selector instance.
- Translator::getLoader() — Method in class Translator
Get the language line loader implementation.
- Translator::getLocale() — Method in class Translator
Get the default locale being used.
- Translator::getFallback() — Method in class Translator
Get the fallback locale being used.
- DatabasePresenceVerifier::getCount() — Method in class DatabasePresenceVerifier
Count the number of objects in a collection having the given value.
- DatabasePresenceVerifier::getMultiCount() — Method in class DatabasePresenceVerifier
Count the number of objects in a collection with the given values.
- Factory::getTranslator() — Method in class Factory
Get the Translator implementation.
- Factory::getPresenceVerifier() — Method in class Factory
Get the Presence Verifier implementation.
- PresenceVerifierInterface::getCount() — Method in class PresenceVerifierInterface
Count the number of objects in a collection having the given value.
- PresenceVerifierInterface::getMultiCount() — Method in class PresenceVerifierInterface
Count the number of objects in a collection with the given values.
- Validator::getValue() — Method in class Validator
Get the value of a given attribute.
- Validator::getPresentCount() — Method in class Validator
Get the number of attributes in a list that are present.
- Validator::getSize() — Method in class Validator
Get the size of an attribute.
- Validator::getStringSize() — Method in class Validator
Get the size of a string.
- Validator::getUniqueIds() — Method in class Validator
Get the excluded ID column and value for the unique rule.
- Validator::getUniqueExtra() — Method in class Validator
Get the extra conditions for a unique rule.
- Validator::getExistCount() — Method in class Validator
Get the number of records that exist in storage.
- Validator::getExtraExistConditions() — Method in class Validator
Get the extra exist conditions.
- Validator::getExtraConditions() — Method in class Validator
Get the extra conditions for a unique / exists rule.
- Validator::getDateTimeWithOptionalFormat() — Method in class Validator
Get a DateTime instance from a string.
- Validator::getDateFormat() — Method in class Validator
Get the date format for an attribute if it has one.
- Validator::getMessage() — Method in class Validator
Get the validation message for an attribute and rule.
- Validator::getInlineMessage() — Method in class Validator
Get the inline message for a rule if it exists.
- Validator::getSizeMessage() — Method in class Validator
Get the proper error message for an attribute and size rule.
- Validator::getAttributeType() — Method in class Validator
Get the data type of the given attribute.
- Validator::getAttributeList() — Method in class Validator
Transform an array of attributes to their displayable form.
- Validator::getAttribute() — Method in class Validator
Get the displayable name of the attribute.
- Validator::getDisplayableValue() — Method in class Validator
Get the displayable name of the value.
- Validator::getRule() — Method in class Validator
Get a rule and its parameters for a given attribute.
- Validator::getExtensions() — Method in class Validator
Get the array of custom validator extensions.
- Validator::getReplacers() — Method in class Validator
Get the array of custom validator message replacers.
- Validator::getData() — Method in class Validator
Get the data under validation.
- Validator::getRules() — Method in class Validator
Get the validation rules.
- Validator::getFiles() — Method in class Validator
Get the files under validation.
- Validator::getPresenceVerifier() — Method in class Validator
Get the Presence Verifier implementation.
- Validator::getTranslator() — Method in class Validator
Get the Translator implementation.
- Validator::getCustomMessages() — Method in class Validator
Get the custom messages for the validator
- Validator::getCustomAttributes() — Method in class Validator
Get the custom attributes used by the validator.
- Validator::getCustomValues() — Method in class Validator
Get the custom values for the validator.
- Validator::getFallbackMessages() — Method in class Validator
Get the fallback messages for the validator.
- Validator::getMessageBag() — Method in class Validator
Get the messages for the instance.
- BladeCompiler::getPath() — Method in class BladeCompiler
Get the path currently being compiled.
- BladeCompiler::getContentTags() — Method in class BladeCompiler
Gets the content tags used for the compiler.
- BladeCompiler::getEscapedContentTags() — Method in class BladeCompiler
Gets the escaped content tags used for the compiler.
- BladeCompiler::getTags() — Method in class BladeCompiler
Gets the tags used for the compiler.
- Compiler::getCompiledPath() — Method in class Compiler
Get the path to the compiled version of a view.
- CompilerInterface::getCompiledPath() — Method in class CompilerInterface
Get the path to the compiled version of a view.
- CompilerEngine::get() — Method in class CompilerEngine
Get the evaluated contents of the view.
- CompilerEngine::getMessage() — Method in class CompilerEngine
Get the exception message for an exception.
- CompilerEngine::getCompiler() — Method in class CompilerEngine
Get the compiler implementation.
- Engine::getLastRendered() — Method in class Engine
Get the last view that was rendered.
- EngineInterface::get() — Method in class EngineInterface
Get the evaluated contents of the view.
- PhpEngine::get() — Method in class PhpEngine
Get the evaluated contents of the view.
- Factory::getEngineFromPath() — Method in class Factory
Get the appropriate view engine for the given path.
- Factory::getExtension() — Method in class Factory
Get the extension used by the view file.
- Factory::getExtensions() — Method in class Factory
Get the extension to engine bindings.
- Factory::getEngineResolver() — Method in class Factory
Get the engine resolver instance.
- Factory::getFinder() — Method in class Factory
Get the view finder instance.
- Factory::getDispatcher() — Method in class Factory
Get the event dispatcher instance.
- Factory::getContainer() — Method in class Factory
Get the IoC container instance.
- Factory::getShared() — Method in class Factory
Get all of the shared data for the environment.
- Factory::getSections() — Method in class Factory
Get the entire array of sections.
- Factory::getNames() — Method in class Factory
Get all of the registered named views in environment.
- FileViewFinder::getNamespaceSegments() — Method in class FileViewFinder
Get the segments of a template with a named path.
- FileViewFinder::getPossibleViewFiles() — Method in class FileViewFinder
Get an array of possible view files.
- FileViewFinder::getFilesystem() — Method in class FileViewFinder
Get the filesystem instance.
- FileViewFinder::getPaths() — Method in class FileViewFinder
Get the active view paths.
- FileViewFinder::getHints() — Method in class FileViewFinder
Get the namespace to file path hints.
- FileViewFinder::getExtensions() — Method in class FileViewFinder
Get registered extensions.
- View::getContents() — Method in class View
Get the evaluated contents of the view.
- View::gatherData() — Method in class View
Get the data bound to the view instance.
- View::getFactory() — Method in class View
Get the view factory instance.
- View::getEngine() — Method in class View
Get the view's rendering engine.
- View::getName() — Method in class View
Get the name of the view.
- View::getData() — Method in class View
Get the array of view data.
- View::getPath() — Method in class View
Get the path to the view file.
- WorkbenchMakeCommand::getPackageSegments() — Method in class WorkbenchMakeCommand
Get the package vendor and name segments from the input.
- WorkbenchMakeCommand::getArguments() — Method in class WorkbenchMakeCommand
Get the console command arguments.
- WorkbenchMakeCommand::getOptions() — Method in class WorkbenchMakeCommand
Get the console command options.
- Package::getFullName() — Method in class Package
Get the full package name.
- PackageCreator::getBlocks() — Method in class PackageCreator
Get the blocks for a given package.
- PackageCreator::getComposerStub() — Method in class PackageCreator
Get the Composer.json stub file contents.
- PackageCreator::getProviderStub() — Method in class PackageCreator
Get the stub for a ServiceProvider.
- PackageCreator::getProviderFile() — Method in class PackageCreator
Load the raw service provider file.
H
- $ DatabaseUserProvider#hasher — Property in class DatabaseUserProvider
The hasher implementation.
- $ EloquentUserProvider#hasher — Property in class EloquentUserProvider
The hasher implementation.
- Guard::hasValidCredentials() — Method in class Guard
Determine if the user matches the credentials.
- $ DatabaseReminderRepository#hashKey — Property in class DatabaseReminderRepository
The hashing key.
- Repository::has() — Method in class Repository
Determine if an item exists in the cache.
- TaggedCache::has() — Method in class TaggedCache
Determine if an item exists in the cache.
- $ FileLoader#hints — Property in class FileLoader
All of the named path hints.
- Repository::has() — Method in class Repository
Determine if the given configuration value exists.
- Repository::hasGroup() — Method in class Repository
Determine if a configuration group exists.
- CookieJar::hasQueued() — Method in class CookieJar
Determine if a cookie has been queued.
- Guard::handle() — Method in class Guard
Handle the given request and get the response.
- Queue::handle() — Method in class Queue
Handle the given request and get the response.
- ConnectionResolver::hasConnection() — Method in class ConnectionResolver
Check if a connection has been registered.
- Builder::has() — Method in class Builder
Add a relationship count condition to the query.
- Builder::hasNested() — Method in class Builder
Add nested relationship count conditions to the query.
- $ Model#hidden — Property in class Model
The attributes that should be hidden for arrays.
- Model::hasGlobalScope() — Method in class Model
Determine if a model has a global scope.
- Model::hydrate() — Method in class Model
Create a collection of models from plain arrays.
- Model::hydrateRaw() — Method in class Model
Create a collection of models from a raw query.
- Model::hasOne() — Method in class Model
Define a one-to-one relationship.
- Model::hasMany() — Method in class Model
Define a one-to-many relationship.
- Model::hasManyThrough() — Method in class Model
Define a has-many-through relationship.
- Model::hasGetMutator() — Method in class Model
Determine if a get mutator exists for an attribute.
- Model::hasSetMutator() — Method in class Model
Determine if a set mutator exists for an attribute.
- BelongsToMany::hydratePivotRelation() — Method in class BelongsToMany
Hydrate the pivot table relationship on the models.
- BelongsToMany::hasPivotColumn() — Method in class BelongsToMany
Determine whether the given column is defined as a pivot column.
- HasMany — Class in namespace Illuminate\Database\Eloquent\Relations
- HasManyThrough — Class in namespace Illuminate\Database\Eloquent\Relations
- HasOne — Class in namespace Illuminate\Database\Eloquent\Relations
- HasOneOrMany — Class in namespace Illuminate\Database\Eloquent\Relations
- Pivot::hasTimestampAttributes() — Method in class Pivot
Determine if the pivot model has timestamp attributes.
- $ Builder#havings — Property in class Builder
The having constraints for the query.
- Builder::having() — Method in class Builder
Add a "having" clause to the query.
- Builder::havingRaw() — Method in class Builder
Add a raw having clause to the query.
- Builder::hasTable() — Method in class Builder
Determine if the given table exists.
- Builder::hasColumn() — Method in class Builder
Determine if the given table has a given column.
- MySqlBuilder::hasTable() — Method in class MySqlBuilder
Determine if the given table exists.
- Encrypter::hash() — Method in class Encrypter
Create a MAC for the given value.
- Dispatcher::hasListeners() — Method in class Dispatcher
Determine if a given event has listeners.
- Handler — Class in namespace Illuminate\Exception
- $ Handler#handlers — Property in class Handler
All of the register exception handlers.
- $ Handler#handled — Property in class Handler
All of the handled error messages.
- Handler::handleError() — Method in class Handler
Handle a PHP error for the application.
- Handler::handleException() — Method in class Handler
Handle an exception for the application.
- Handler::handleUncaughtException() — Method in class Handler
Handle an uncaught exception.
- Handler::handleShutdown() — Method in class Handler
Handle the PHP shutdown event.
- Handler::handleConsole() — Method in class Handler
Handle a console exception.
- Handler::handlesException() — Method in class Handler
Determine if the given handler handles this exception.
- Handler::hints() — Method in class Handler
Determine if the given handler type hints the exception.
- Application::handle() — Method in class Application
Handle the given request and get the response.
- $ RoutesCommand#headers — Property in class RoutesCommand
The table headers for the command.
- HashServiceProvider — Class in namespace Illuminate\Hashing
- HasherInterface — Class in namespace Illuminate\Hashing
- $ FormBuilder#html — Property in class FormBuilder
The HTML builder instance.
- FormBuilder::hidden() — Method in class FormBuilder
Create a hidden input field.
- HtmlBuilder — Class in namespace Illuminate\Html
- HtmlServiceProvider — Class in namespace Illuminate\Html
- FrameGuard::handle() — Method in class FrameGuard
Handle the given request and get the response.
- RedirectResponse::header() — Method in class RedirectResponse
Set a header on the Response.
- Request::has() — Method in class Request
Determine if the request contains a non-empty value for an input item.
- Request::hasCookie() — Method in class Request
Determine if a cookie is set on the request.
- Request::hasFile() — Method in class Request
Determine if the uploaded data contains a file.
- Request::header() — Method in class Request
Retrieve a header from the request.
- ResponseTrait::header() — Method in class ResponseTrait
Set a header on the Response.
- Mailer::handleQueuedMessage() — Method in class Mailer
Handle a queued e-mail message job.
- $ Paginator#hasMore — Property in class Paginator
Indicates if a pagination doing "quick" pagination has more items.
- Listener::handleWorkerOutput() — Method in class Listener
Handle output from the worker process.
- $ Connection#host — Property in class Connection
The host name of the server.
- $ SecLibGateway#host — Property in class SecLibGateway
The host name of the server.
- SecLibGateway::hasRsaKey() — Method in class SecLibGateway
Determine if an RSA key is configured.
- HostValidator — Class in namespace Illuminate\Routing\Matching
- Redirector::home() — Method in class Redirector
Create a new redirect response to the "home" route.
- Route::httpOnly() — Method in class Route
Determine if the route only responds to HTTP requests.
- Route::httpsOnly() — Method in class Route
Determine if the route only responds to HTTPS requests.
- RouteCollection::hasNamedRoute() — Method in class RouteCollection
Determine if the route collection contains a given named route.
- Router::has() — Method in class Router
Check if a route with the given name exists.
- Router::handle() — Method in class Router
Get the response for a given request.
- Middleware::handle() — Method in class Middleware
Handle the given request and get the response.
- SessionInterface::handlerNeedsRequest() — Method in class SessionInterface
Determine if the session handler needs a request.
- $ Store#handler — Property in class Store
The session handler implementation.
- Store::has() — Method in class Store
- {@inheritdoc}
- Store::hasOldInput() — Method in class Store
Determine if the session contains old input.
- Store::handlerNeedsRequest() — Method in class Store
Determine if the session handler needs a request.
- Arr::has() — Method in class Arr
Check if an item exists in an array using "dot" notation.
- Collection::has() — Method in class Collection
Determine if an item exists in the collection by key.
- Cookie::has() — Method in class Cookie
Determine if a cookie exists on the request.
- HTML — Class in namespace Illuminate\Support\Facades
- Hash — Class in namespace Illuminate\Support\Facades
- MessageBag::has() — Method in class MessageBag
Determine if messages exist for a given key.
- MacroableTrait::hasMacro() — Method in class MacroableTrait
Checks if macro is registered
- ViewErrorBag::hasBag() — Method in class ViewErrorBag
Checks if a named MessageBag exists in the bags.
- $ FileLoader#hints — Property in class FileLoader
All of the namespace hints.
- Translator::has() — Method in class Translator
Determine if a translation exists.
- Validator::hasNotFailedPreviousRuleIfPresenceRule() — Method in class Validator
Determine if it's a necessary presence validation.
- Validator::hasRule() — Method in class Validator
Determine if the given attribute has a rule in the given set.
- CompilerEngine::handleViewException() — Method in class CompilerEngine
Handle a view exception.
- PhpEngine::handleViewException() — Method in class PhpEngine
Handle a view exception.
- $ FileViewFinder#hints — Property in class FileViewFinder
The namespace to file path hints.
- FileViewFinder::hasHintInformation() — Method in class FileViewFinder
Returns whether or not the view specify a hint information.
I
- IlluminateQueueClosure — Class in namespace [Global Namespace]
- Guard::id() — Method in class Guard
Get the ID for the currently authenticated user.
- ApcStore::increment() — Method in class ApcStore
Increment the value of an item in the cache.
- ApcWrapper::increment() — Method in class ApcWrapper
Increment the value of an item in the cache.
- ArrayStore::increment() — Method in class ArrayStore
Increment the value of an item in the cache.
- DatabaseStore::increment() — Method in class DatabaseStore
Increment the value of an item in the cache.
- FileStore::increment() — Method in class FileStore
Increment the value of an item in the cache.
- MemcachedStore::increment() — Method in class MemcachedStore
Increment the value of an item in the cache.
- NullStore::increment() — Method in class NullStore
Increment the value of an item in the cache.
- RedisStore::increment() — Method in class RedisStore
Increment the value of an item in the cache.
- StoreInterface::increment() — Method in class StoreInterface
Increment the value of an item in the cache.
- TaggedCache::increment() — Method in class TaggedCache
Increment the value of an item in the cache.
- WinCacheStore::increment() — Method in class WinCacheStore
Increment the value of an item in the cache.
- XCacheStore::increment() — Method in class XCacheStore
Increment the value of an item in the cache.
- $ Repository#items — Property in class Repository
All of the configuration items.
- $ Command#input — Property in class Command
The input interface implementation.
- Command::info() — Method in class Command
Write a string as information output.
- $ Container#instances — Property in class Container
The container's shared instances.
- Container::isAlias() — Method in class Container
Determine if a given string is an alias.
- Container::instance() — Method in class Container
Register an existing instance as shared in the container.
- Container::isShared() — Method in class Container
Determine if a given type is shared.
- Container::isBuildable() — Method in class Container
Determine if the given concrete is buildable.
- Connection::insert() — Method in class Connection
Run an insert statement against the database.
- ConnectionInterface::insert() — Method in class ConnectionInterface
Run an insert statement against the database.
- InstallCommand — Class in namespace Illuminate\Database\Console\Migrations
- Builder::increment() — Method in class Builder
Increment a column's value by a given amount.
- Builder::isNested() — Method in class Builder
Determine if the relationship is nested.
- Collection::intersect() — Method in class Collection
Intersect the collection with the given items.
- $ Model#incrementing — Property in class Model
Indicates if the IDs are auto-incrementing.
- Model::increment() — Method in class Model
Increment a column's value by a given amount.
- Model::incrementOrDecrement() — Method in class Model
Run the increment or decrement method on the model.
- Model::incrementOrDecrementAttributeValue() — Method in class Model
Increment the underlying attribute value and sync with original.
- Model::insertAndSetId() — Method in class Model
Insert the given attributes and set the ID on the model.
- Model::isFillable() — Method in class Model
Determine if the given attribute may be mass assigned.
- Model::isGuarded() — Method in class Model
Determine if the given key is guarded.
- Model::isDirty() — Method in class Model
Determine if the model or given attribute(s) have been modified.
- BelongsTo::initRelation() — Method in class BelongsTo
Initialize the relation on a set of models.
- BelongsToMany::initRelation() — Method in class BelongsToMany
Initialize the relation on a set of models.
- HasMany::initRelation() — Method in class HasMany
Initialize the relation on a set of models.
- HasManyThrough::initRelation() — Method in class HasManyThrough
Initialize the relation on a set of models.
- HasOne::initRelation() — Method in class HasOne
Initialize the relation on a set of models.
- MorphMany::initRelation() — Method in class MorphMany
Initialize the relation on a set of models.
- MorphOne::initRelation() — Method in class MorphOne
Initialize the relation on a set of models.
- $ MorphToMany#inverse — Property in class MorphToMany
Indicates if we are connecting the inverse of the relation.
- Relation::initRelation() — Method in class Relation
Initialize the relation on a set of models.
- SoftDeletingScope::isSoftDeleteConstraint() — Method in class SoftDeletingScope
Determine if the given where clause is a soft delete constraint.
- Grammar::isExpression() — Method in class Grammar
Determine if the given value is a raw expression.
- Builder::invalidOperatorAndValue() — Method in class Builder
Determine if the given operator and value combination is legal.
- Builder::implode() — Method in class Builder
Concatenate values of a given column as a string.
- Builder::insert() — Method in class Builder
Insert a new record into the database.
- Builder::insertGetId() — Method in class Builder
Insert a new record and get the value of the primary key.
- Builder::increment() — Method in class Builder
Increment a column's value by a given amount.
- Blueprint::index() — Method in class Blueprint
Specify an index for the table.
- Blueprint::increments() — Method in class Blueprint
Create a new auto-incrementing integer column on the table.
- Blueprint::integer() — Method in class Blueprint
Create a new integer column on the table.
- Blueprint::indexCommand() — Method in class Blueprint
Add a new index command to the blueprint.
- Encrypter::invalidPayload() — Method in class Encrypter
Verify that the encryption payload is valid.
- InvalidKeyException — Class in namespace Illuminate\Encryption
- Handler::isFatal() — Method in class Handler
Determine if the error type is fatal.
- Filesystem::isDirectory() — Method in class Filesystem
Determine if the given path is a directory.
- Filesystem::isWritable() — Method in class Filesystem
Determine if the given path is writable.
- Filesystem::isFile() — Method in class Filesystem
Determine if the given path is a file.
- $ AliasLoader#instance — Property in class AliasLoader
The singleton instance of the loader.
- AliasLoader::isRegistered() — Method in class AliasLoader
Indicates if the loader has been registered.
- Application::isLocal() — Method in class Application
Determine if application is in local environment.
- Application::isBooted() — Method in class Application
Determine if the application has booted.
- Application::isDownForMaintenance() — Method in class Application
Determine if the application is currently down for maintenance.
- Application::isDeferredService() — Method in class Application
Determine if the given service is a deferred service.
- EnvironmentDetector::isMachine() — Method in class EnvironmentDetector
Determine if the name matches the machine name.
- $ ConsoleSupportServiceProvider#instances — Property in class ConsoleSupportServiceProvider
An array of the service provider instances.
- FormBuilder::input() — Method in class FormBuilder
Create a form input field.
- FormBuilder::image() — Method in class FormBuilder
Create a HTML image input element.
- HtmlBuilder::image() — Method in class HtmlBuilder
Generate an HTML image element.
- Request::instance() — Method in class Request
Return the Request instance.
- Request::is() — Method in class Request
Determine if the current request URI matches a pattern.
- Request::ip() — Method in class Request
Returns the client IP address.
- Request::ips() — Method in class Request
Returns the client IP addresses.
- Request::isEmptyString() — Method in class Request
Determine if the given input key is an empty string for "has".
- Request::input() — Method in class Request
Retrieve an input item from the request.
- Request::isValidFile() — Method in class Request
Check that the given file is a valid file instance.
- Request::isJson() — Method in class Request
Determine if the request is sending JSON.
- Mailer::isPretending() — Method in class Mailer
Check if the mailer is pretending to send messages.
- LogTransport::isStarted() — Method in class LogTransport
- {@inheritdoc}
- MailgunTransport::isStarted() — Method in class MailgunTransport
- {@inheritdoc}
- MandrillTransport::isStarted() — Method in class MandrillTransport
- {@inheritdoc}
- $ Paginator#items — Property in class Paginator
The items being paginated.
- Paginator::isValidPageNumber() — Method in class Paginator
Determine if the given value is a valid page number.
- Paginator::isQuickPaginating() — Method in class Paginator
Determine if the paginator is doing "quick" pagination.
- Paginator::isEmpty() — Method in class Paginator
Determine if the list of items is empty or not.
- IronConnector — Class in namespace Illuminate\Queue\Connectors
- IronQueue — Class in namespace Illuminate\Queue
- $ IronQueue#iron — Property in class IronQueue
The IronMQ instance.
- IronJob — Class in namespace Illuminate\Queue\Jobs
- $ IronJob#iron — Property in class IronJob
The Iron queue instance.
- $ Job#instance — Property in class Job
The job handler instance.
- Job::isDeleted() — Method in class Job
Determine if the job has been deleted.
- QueueManager::isDownForMaintenance() — Method in class QueueManager
Determine if the application is in maintenance mode.
- RemoteManager::into() — Method in class RemoteManager
Get a remote connection instance.
- Controller::isInstanceFilter() — Method in class Controller
Determine if a filter is a local method on the controller.
- ControllerInspector::isRoutable() — Method in class ControllerInspector
Determine if the given controller method is routable.
- Redirector::intended() — Method in class Redirector
Create a new redirect response to the previously intended location.
- $ Router#inspector — Property in class Router
The controller inspector instance.
- Router::input() — Method in class Router
Get a route parameter for the current route.
- Router::is() — Method in class Router
Alias for the "currentRouteNamed" method.
- UrlGenerator::isValidUrl() — Method in class UrlGenerator
Determine if the given path is a valid URL.
- $ Store#id — Property in class Store
The session ID.
- Store::initializeLocalBag() — Method in class Store
Initialize a bag in storage if it doesn't exist.
- Store::isValidId() — Method in class Store
Determine if this is a valid session ID.
- Store::invalidate() — Method in class Store
- {@inheritdoc}
- Store::isStarted() — Method in class Store
- {@inheritdoc}
- $ Collection#items — Property in class Collection
The items contained in the collection.
- Collection::implode() — Method in class Collection
Concatenate values of a given key as a string.
- Collection::intersect() — Method in class Collection
Intersect the collection with the given items.
- Collection::isEmpty() — Method in class Collection
Determine if the collection is empty or not.
- Facade::isMock() — Method in class Facade
Determines whether a mock is set as the instance of the facade.
- Input — Class in namespace Illuminate\Support\Facades
- MessageBag::isUnique() — Method in class MessageBag
Determine if a key and message combination already exists.
- MessageBag::isEmpty() — Method in class MessageBag
Determine if the message bag has any messages.
- $ Pluralizer#irregular — Property in class Pluralizer
Irregular word forms.
- Pluralizer::inflect() — Method in class Pluralizer
Perform auto inflection on an English word.
- ServiceProvider::isDeferred() — Method in class ServiceProvider
Determine if the provider is deferred.
- Str::is() — Method in class Str
Determine if a given string matches a given pattern.
- $ CapsuleManagerTrait#instance — Property in class CapsuleManagerTrait
The current globally used instance.
- Translator::isLoaded() — Method in class Translator
Determine if the given group has been loaded.
- $ Factory#implicitExtensions — Property in class Factory
All of the custom implicit validator extensions.
- $ Validator#implicitRules — Property in class Validator
The validation rules that imply the field is required.
- Validator::invalid() — Method in class Validator
Returns the data which was invalid.
- Validator::isValidatable() — Method in class Validator
Determine if the attribute is validatable.
- Validator::isImplicit() — Method in class Validator
Determine if a given rule implies the attribute is required.
- Validator::isAValidFileInstance() — Method in class Validator
Check that the given value is a valid file instance.
- Compiler::isExpired() — Method in class Compiler
Determine if the view at the given path is expired.
- CompilerInterface::isExpired() — Method in class CompilerInterface
Determine if the given view is expired.
- Factory::inject() — Method in class Factory
Inject inline content into a section.
- Factory::incrementRender() — Method in class Factory
Increment the rendering counter.
J
- Model::joiningTable() — Method in class Model
Get the joining table name for a many-to-many relation.
- Model::jsonSerialize() — Method in class Model
Convert the object into something JSON serializable.
- $ Builder#joins — Property in class Builder
The table joins for the query.
- Builder::join() — Method in class Builder
Add a join clause to the query.
- Builder::joinWhere() — Method in class Builder
Add a "join where" clause to the query.
- JoinClause — Class in namespace Illuminate\Database\Query
- JsonResponse — Class in namespace Illuminate\Http
- $ JsonResponse#jsonOptions — Property in class JsonResponse
The json encoding options.
- $ Request#json — Property in class Request
The decoded JSON content for the request.
- Request::json() — Method in class Request
Get the JSON payload for the request.
- $ BeanstalkdJob#job — Property in class BeanstalkdJob
The Pheanstalk job instance.
- $ IronJob#job — Property in class IronJob
The IronMQ message instance.
- Job — Class in namespace Illuminate\Queue\Jobs
- $ RedisJob#job — Property in class RedisJob
The Redis job payload.
- $ SqsJob#job — Property in class SqsJob
The Amazon SQS job instance.
- $ SyncJob#job — Property in class SyncJob
The class name of the job.
- Collection::jsonSerialize() — Method in class Collection
Convert the object into something JSON serializable.
- JsonableInterface — Class in namespace Illuminate\Support\Contracts
- Response::json() — Method in class Response
Return a new JSON response from the application.
- Response::jsonp() — Method in class Response
Return a new JSONP response from the application.
- Fluent::jsonSerialize() — Method in class Fluent
Convert the object into something JSON serializable.
- MessageBag::jsonSerialize() — Method in class MessageBag
Convert the object into something JSON serializable.
K
- Container::keyParametersByArgument() — Method in class Container
If extra parameters are passed by numeric ID, rekey them by argument name.
- $ Encrypter#key — Property in class Encrypter
The encryption key.
- KeyGenerateCommand — Class in namespace Illuminate\Foundation\Console
- KeyGeneratorServiceProvider — Class in namespace Illuminate\Foundation\Providers
- $ MailgunTransport#key — Property in class MailgunTransport
The Mailgun API key.
- $ MandrillTransport#key — Property in class MandrillTransport
The Mandrill API key.
- Store::keep() — Method in class Store
Reflash a subset of the current flash data.
- Collection::keyBy() — Method in class Collection
Key an associative array by a field.
- Collection::keys() — Method in class Collection
Get the keys of the collection items.
L
- $ Guard#lastAttempted — Property in class Guard
The user we last attempted to retrieve.
- $ Guard#loggedOut — Property in class Guard
Indicates if the logout method has been called.
- Guard::login() — Method in class Guard
Log a user into the application.
- Guard::loginUsingId() — Method in class Guard
Log the given user ID into the application.
- Guard::logout() — Method in class Guard
Log the user out of the application.
- $ EnvironmentVariables#loader — Property in class EnvironmentVariables
The environment loader implementation.
- EnvironmentVariables::load() — Method in class EnvironmentVariables
Load the server variables for a given environment.
- EnvironmentVariablesLoaderInterface::load() — Method in class EnvironmentVariablesLoaderInterface
Load the environment variables for the given environment.
- FileEnvironmentVariablesLoader::load() — Method in class FileEnvironmentVariablesLoader
Load the environment variables for the given environment.
- FileLoader::load() — Method in class FileLoader
Load the given configuration group.
- LoaderInterface — Class in namespace Illuminate\Config
- LoaderInterface::load() — Method in class LoaderInterface
Load the given configuration group.
- $ Repository#loader — Property in class Repository
The loader implementation.
- Repository::load() — Method in class Repository
Load the configuration group for the key.
- $ Application#laravel — Property in class Application
The Laravel application instance.
- $ Command#laravel — Property in class Command
The Laravel application instance.
- Command::line() — Method in class Command
Write a string as standard output.
- $ Connection#loggingQueries — Property in class Connection
Indicates whether queries are being logged.
- Connection::logQuery() — Method in class Connection
Log a query in the connection's query log.
- Connection::listen() — Method in class Connection
Register a database query listener with the connection.
- Connection::logging() — Method in class Connection
Determine whether we're logging queries.
- Builder::lists() — Method in class Builder
Get an array with the values of a given column.
- Builder::loadRelation() — Method in class Builder
Eagerly load the relationship on a set of models.
- Collection::load() — Method in class Collection
Load a set of relationships onto the collection.
- Model::load() — Method in class Model
Eager load relations on the model.
- $ HasOneOrMany#localKey — Property in class HasOneOrMany
The local key of the parent model.
- DatabaseMigrationRepository::log() — Method in class DatabaseMigrationRepository
Log that a migration was run.
- MigrationRepositoryInterface::log() — Method in class MigrationRepositoryInterface
Log that a migration was run.
- $ Builder#limit — Property in class Builder
The maximum number of records to return.
- $ Builder#lock — Property in class Builder
Indicates whether row locking is being used.
- Builder::leftJoin() — Method in class Builder
Add a left join to the query.
- Builder::leftJoinWhere() — Method in class Builder
Add a "join where" clause to the query.
- Builder::latest() — Method in class Builder
Add an "order by" clause for a timestamp to the query.
- Builder::limit() — Method in class Builder
Set the "limit" value of the query.
- Builder::lock() — Method in class Builder
Lock the selected rows in the table.
- Builder::lockForUpdate() — Method in class Builder
Lock the selected rows in the table for updating.
- Builder::lists() — Method in class Builder
Get an array with the values of a given column.
- Blueprint::longText() — Method in class Blueprint
Create a new long text column on the table.
- $ Dispatcher#listeners — Property in class Dispatcher
The registered event listeners.
- Dispatcher::listen() — Method in class Dispatcher
Register an event listener with the dispatcher.
- Filesystem::lastModified() — Method in class Filesystem
Get the file's last modification time.
- AliasLoader::load() — Method in class AliasLoader
Load a class alias if it is registered.
- $ Application#loadedProviders — Property in class Application
The names of the loaded service providers.
- Application::loadDeferredProviders() — Method in class Application
Load and boot all of the remaining deferred providers.
- Application::loadDeferredProvider() — Method in class Application
Load the provider for a deferred service.
- ProviderRepository::load() — Method in class ProviderRepository
Register the application service providers.
- ProviderRepository::loadManifest() — Method in class ProviderRepository
Load the service provider manifest JSON file.
- $ FormBuilder#labels — Property in class FormBuilder
An array of label names we've created.
- FormBuilder::label() — Method in class FormBuilder
Create a form label element.
- HtmlBuilder::link() — Method in class HtmlBuilder
Generate a HTML link.
- HtmlBuilder::linkAsset() — Method in class HtmlBuilder
Generate a HTML link to an asset.
- HtmlBuilder::linkSecureAsset() — Method in class HtmlBuilder
Generate a HTTPS HTML link to an asset.
- HtmlBuilder::linkRoute() — Method in class HtmlBuilder
Generate a HTML link to a named route.
- HtmlBuilder::linkAction() — Method in class HtmlBuilder
Generate a HTML link to a controller action.
- HtmlBuilder::listing() — Method in class HtmlBuilder
Create a listing HTML element.
- HtmlBuilder::listingElement() — Method in class HtmlBuilder
Create the HTML for a listing element.
- LogServiceProvider — Class in namespace Illuminate\Log
- $ Writer#levels — Property in class Writer
All of the error levels.
- Writer::listen() — Method in class Writer
Register a new callback handler for when a log event is triggered.
- $ Mailer#logger — Property in class Mailer
The log writer instance.
- Mailer::later() — Method in class Mailer
Queue a new e-mail message for sending after (n) seconds.
- Mailer::laterOn() — Method in class Mailer
Queue a new e-mail message for sending after (n) seconds on the given queue.
- Mailer::logMessage() — Method in class Mailer
Log that a message was sent.
- LogTransport — Class in namespace Illuminate\Mail\Transport
- $ LogTransport#logger — Property in class LogTransport
The Logger instance.
- $ Factory#locale — Property in class Factory
The locale to be used by the translator.
- $ Paginator#lastPage — Property in class Paginator
Get the last available page number.
- Paginator::links() — Method in class Paginator
Get the pagination links view.
- $ Presenter#lastPage — Property in class Presenter
The last available page of the paginator.
- BeanstalkdQueue::later() — Method in class BeanstalkdQueue
Push a new job onto the queue after a delay.
- Manager::later() — Method in class Manager
Push a new job onto the queue after a delay.
- ListFailedCommand — Class in namespace Illuminate\Queue\Console
- ListenCommand — Class in namespace Illuminate\Queue\Console
- $ ListenCommand#listener — Property in class ListenCommand
The queue listener instance.
- DatabaseFailedJobProvider::log() — Method in class DatabaseFailedJobProvider
Log a failed job into storage.
- FailedJobProviderInterface::log() — Method in class FailedJobProviderInterface
Log a failed job into storage.
- IronQueue::later() — Method in class IronQueue
Push a new job onto the queue after a delay.
- Listener — Class in namespace Illuminate\Queue
- Listener::listen() — Method in class Listener
Listen to the given queue connection.
- QueueInterface::later() — Method in class QueueInterface
Push a new job onto the queue after a delay.
- QueueManager::looping() — Method in class QueueManager
Register an event listener for the daemon queue loop.
- RedisQueue::later() — Method in class RedisQueue
Push a new job onto the queue after a delay.
- SqsQueue::later() — Method in class SqsQueue
Push a new job onto the queue after a delay.
- SyncQueue::later() — Method in class SyncQueue
Push a new job onto the queue after a delay.
- Worker::logFailedJob() — Method in class Worker
Log a failed job into storage.
- SecLibGateway::loadRsaKey() — Method in class SecLibGateway
Load the RSA key instance.
- $ Controller#layout — Property in class Controller
The layout used by the controller.
- Store::loadSession() — Method in class Store
Load the session data from the handler.
- Arr::last() — Method in class Arr
Return the last element in an array passing a given truth test.
- ClassLoader::load() — Method in class ClassLoader
Load the given class file.
- Collection::last() — Method in class Collection
Get the last item from the collection.
- Collection::lists() — Method in class Collection
Get an array with the values of a given key.
- Lang — Class in namespace Illuminate\Support\Facades
- Log — Class in namespace Illuminate\Support\Facades
- Str::length() — Method in class Str
Return the length of the given string.
- Str::limit() — Method in class Str
Limit the number of characters in a string.
- Str::lower() — Method in class Str
Convert the given string to lower-case.
- FileLoader::load() — Method in class FileLoader
Load the messages for the given locale.
- FileLoader::loadNamespaced() — Method in class FileLoader
Load a namespaced translation group.
- FileLoader::loadNamespaceOverrides() — Method in class FileLoader
Load a local namespaced translation group for overrides.
- FileLoader::loadPath() — Method in class FileLoader
Load a locale from a given path.
- LoaderInterface — Class in namespace Illuminate\Translation
- LoaderInterface::load() — Method in class LoaderInterface
Load the messages for the given locale.
- $ Translator#loader — Property in class Translator
The loader implementation.
- $ Translator#locale — Property in class Translator
The default locale being used by the translator.
- $ Translator#loaded — Property in class Translator
The array of loaded translation groups.
- Translator::load() — Method in class Translator
Load the specified language group.
- Translator::locale() — Method in class Translator
Get the default locale being used.
- $ CompilerEngine#lastCompiled — Property in class CompilerEngine
A stack of the last compiled templates.
- $ Engine#lastRendered — Property in class Engine
The view that was last to be rendered.
- $ Package#lowerVendor — Property in class Package
The snake-cased version of the vendor.
- $ Package#lowerName — Property in class Package
The snake-cased version of the package.
M
- $ EloquentUserProvider#model — Property in class EloquentUserProvider
The Eloquent user model.
- $ PasswordBroker#mailer — Property in class PasswordBroker
The mailer instance.
- MemcachedConnector — Class in namespace Illuminate\Cache
- MemcachedStore — Class in namespace Illuminate\Cache
- $ MemcachedStore#memcached — Property in class MemcachedStore
The Memcached instance.
- FileLoader::mergeEnvironment() — Method in class FileLoader
Merge the items in the given file into the items.
- Application::make() — Method in class Application
Create a new Console application.
- Container::make() — Method in class Container
Resolve the given type from the container.
- Container::missingLeadingSlash() — Method in class Container
Determine if the given abstract has a leading slash.
- CookieJar::make() — Method in class CookieJar
Create a new cookie instance.
- Manager — Class in namespace Illuminate\Database\Capsule
- $ Manager#manager — Property in class Manager
The database manager instance.
- ConnectionFactory::make() — Method in class ConnectionFactory
Establish a PDO connection based on the configuration.
- ConnectionFactory::mergeReadWriteConfig() — Method in class ConnectionFactory
Merge a configuration for a read / write connection.
- MySqlConnector — Class in namespace Illuminate\Database\Connectors
- MigrateCommand — Class in namespace Illuminate\Database\Console\Migrations
- $ MigrateCommand#migrator — Property in class MigrateCommand
The migrator instance.
- MigrateMakeCommand — Class in namespace Illuminate\Database\Console\Migrations
- $ ResetCommand#migrator — Property in class ResetCommand
The migrator instance.
- $ RollbackCommand#migrator — Property in class RollbackCommand
The migrator instance.
- DatabaseManager::makeConnection() — Method in class DatabaseManager
Make the database connection instance.
- $ Builder#model — Property in class Builder
The model being queried.
- $ Builder#macros — Property in class Builder
All of the registered builder macros.
- Builder::mergeWheresToHas() — Method in class Builder
Merge the "wheres" from a relation query to a has query.
- Builder::macro() — Method in class Builder
Extend the builder with a given callback.
- Collection::max() — Method in class Collection
Get the max value of a given key.
- Collection::min() — Method in class Collection
Get the min value of a given key.
- Collection::modelKeys() — Method in class Collection
Get the array of primary keys
- Collection::merge() — Method in class Collection
Merge the collection with the given items.
- MassAssignmentException — Class in namespace Illuminate\Database\Eloquent
- Model — Class in namespace Illuminate\Database\Eloquent
- $ Model#morphClass — Property in class Model
The class name to be used in polymorphic relations.
- $ Model#mutatorCache — Property in class Model
The cache of the mutated attributes for each class.
- $ Model#manyMethods — Property in class Model
The many to many relationship methods.
- Model::morphOne() — Method in class Model
Define a polymorphic one-to-one relationship.
- Model::morphTo() — Method in class Model
Define a polymorphic, inverse one-to-one or many relationship.
- Model::morphMany() — Method in class Model
Define a polymorphic one-to-many relationship.
- Model::morphToMany() — Method in class Model
Define a polymorphic many-to-many relationship.
- Model::morphedByMany() — Method in class Model
Define a polymorphic, inverse many-to-many relationship.
- Model::mutateAttribute() — Method in class Model
Get the value of an attribute using its mutator.
- Model::mutateAttributeForArray() — Method in class Model
Get the value of an attribute using its mutator for array conversion.
- ModelNotFoundException — Class in namespace Illuminate\Database\Eloquent
- $ ModelNotFoundException#model — Property in class ModelNotFoundException
Name of the affected Eloquent model.
- BelongsTo::match() — Method in class BelongsTo
Match the eagerly loaded results to their parents.
- BelongsToMany::match() — Method in class BelongsToMany
Match the eagerly loaded results to their parents.
- HasMany::match() — Method in class HasMany
Match the eagerly loaded results to their parents.
- HasManyThrough::match() — Method in class HasManyThrough
Match the eagerly loaded results to their parents.
- HasOne::match() — Method in class HasOne
Match the eagerly loaded results to their parents.
- HasOneOrMany::matchOne() — Method in class HasOneOrMany
Match the eagerly loaded results to their single parents.
- HasOneOrMany::matchMany() — Method in class HasOneOrMany
Match the eagerly loaded results to their many parents.
- HasOneOrMany::matchOneOrMany() — Method in class HasOneOrMany
Match the eagerly loaded results to their many parents.
- MorphMany — Class in namespace Illuminate\Database\Eloquent\Relations
- MorphMany::match() — Method in class MorphMany
Match the eagerly loaded results to their parents.
- MorphOne — Class in namespace Illuminate\Database\Eloquent\Relations
- MorphOne::match() — Method in class MorphOne
Match the eagerly loaded results to their parents.
- MorphOneOrMany — Class in namespace Illuminate\Database\Eloquent\Relations
- $ MorphOneOrMany#morphType — Property in class MorphOneOrMany
The foreign key type for the relationship.
- $ MorphOneOrMany#morphClass — Property in class MorphOneOrMany
The class name of the parent model.
- MorphPivot — Class in namespace Illuminate\Database\Eloquent\Relations
- $ MorphPivot#morphType — Property in class MorphPivot
The type of the polymorphic relation.
- $ MorphPivot#morphClass — Property in class MorphPivot
The value of the polymorphic relation.
- MorphTo — Class in namespace Illuminate\Database\Eloquent\Relations
- $ MorphTo#morphType — Property in class MorphTo
The type of the polymorphic relation.
- $ MorphTo#models — Property in class MorphTo
The models whose relations are being eager loaded.
- MorphTo::match() — Method in class MorphTo
Match the eagerly loaded results to their parents.
- MorphTo::matchToMorphParents() — Method in class MorphTo
Match the results for a given type to their parents.
- MorphToMany — Class in namespace Illuminate\Database\Eloquent\Relations
- $ MorphToMany#morphType — Property in class MorphToMany
The type of the polymorphic relation.
- $ MorphToMany#morphClass — Property in class MorphToMany
The class name of the morph type constraint.
- Relation::match() — Method in class Relation
Match the eagerly loaded results to their parents.
- MigrationServiceProvider — Class in namespace Illuminate\Database
- Migration — Class in namespace Illuminate\Database\Migrations
- MigrationCreator — Class in namespace Illuminate\Database\Migrations
- MigrationRepositoryInterface — Class in namespace Illuminate\Database\Migrations
- Migrator — Class in namespace Illuminate\Database\Migrations
- MySqlConnection — Class in namespace Illuminate\Database
- Builder::min() — Method in class Builder
Retrieve the minimum value of a given column.
- Builder::max() — Method in class Builder
Retrieve the maximum value of a given column.
- Builder::mergeWheres() — Method in class Builder
Merge an array of where clauses and bindings.
- Builder::mergeBindings() — Method in class Builder
Merge an array of bindings into our bindings.
- MySqlGrammar — Class in namespace Illuminate\Database\Query\Grammars
- MySqlProcessor — Class in namespace Illuminate\Database\Query\Processors
- Blueprint::mediumText() — Method in class Blueprint
Create a new medium text column on the table.
- Blueprint::mediumInteger() — Method in class Blueprint
Create a new medium integer column on the table.
- Blueprint::morphs() — Method in class Blueprint
Add the proper columns for a polymorphic table.
- MySqlGrammar — Class in namespace Illuminate\Database\Schema\Grammars
- $ MySqlGrammar#modifiers — Property in class MySqlGrammar
The possible column modifiers.
- MySqlGrammar::modifyUnsigned() — Method in class MySqlGrammar
Get the SQL for an unsigned column modifier.
- MySqlGrammar::modifyNullable() — Method in class MySqlGrammar
Get the SQL for a nullable column modifier.
- MySqlGrammar::modifyDefault() — Method in class MySqlGrammar
Get the SQL for a default column modifier.
- MySqlGrammar::modifyIncrement() — Method in class MySqlGrammar
Get the SQL for an auto-increment column modifier.
- MySqlGrammar::modifyAfter() — Method in class MySqlGrammar
Get the SQL for an "after" column modifier.
- MySqlGrammar::modifyComment() — Method in class MySqlGrammar
Get the SQL for an "comment" column modifier.
- $ PostgresGrammar#modifiers — Property in class PostgresGrammar
The possible column modifiers.
- PostgresGrammar::modifyNullable() — Method in class PostgresGrammar
Get the SQL for a nullable column modifier.
- PostgresGrammar::modifyDefault() — Method in class PostgresGrammar
Get the SQL for a default column modifier.
- PostgresGrammar::modifyIncrement() — Method in class PostgresGrammar
Get the SQL for an auto-increment column modifier.
- $ SQLiteGrammar#modifiers — Property in class SQLiteGrammar
The possible column modifiers.
- SQLiteGrammar::modifyNullable() — Method in class SQLiteGrammar
Get the SQL for a nullable column modifier.
- SQLiteGrammar::modifyDefault() — Method in class SQLiteGrammar
Get the SQL for a default column modifier.
- SQLiteGrammar::modifyIncrement() — Method in class SQLiteGrammar
Get the SQL for an auto-increment column modifier.
- $ SqlServerGrammar#modifiers — Property in class SqlServerGrammar
The possible column modifiers.
- SqlServerGrammar::modifyNullable() — Method in class SqlServerGrammar
Get the SQL for a nullable column modifier.
- SqlServerGrammar::modifyDefault() — Method in class SqlServerGrammar
Get the SQL for a default column modifier.
- SqlServerGrammar::modifyIncrement() — Method in class SqlServerGrammar
Get the SQL for an auto-increment column modifier.
- MySqlBuilder — Class in namespace Illuminate\Database\Schema
- $ Encrypter#mode — Property in class Encrypter
The mode used for encryption.
- Encrypter::mcryptDecrypt() — Method in class Encrypter
Run the mcrypt decryption routine for the value.
- Dispatcher::makeListener() — Method in class Dispatcher
Register an event listener with the dispatcher.
- Filesystem::move() — Method in class Filesystem
Move a file to a new location.
- Filesystem::makeDirectory() — Method in class Filesystem
Create a directory.
- $ Application#middlewares — Property in class Application
All of the developer defined middlewares.
- Application::markAsRegistered() — Method in class Application
Mark the given provider as registered.
- Application::make() — Method in class Application
Resolve the given type from the container.
- Application::mergeCustomMiddlewares() — Method in class Application
Merge the developer defined middlewares onto the stack.
- Application::middleware() — Method in class Application
Add a HttpKernel middleware onto the stack.
- Application::missing() — Method in class Application
Register a 404 error handler.
- ConfigPublisher::makeDestination() — Method in class ConfigPublisher
Create the destination directory if it doesn't exist.
- MigratePublishCommand — Class in namespace Illuminate\Foundation\Console
- MigrationPublisher — Class in namespace Illuminate\Foundation
- MigrationPublisher::migrationExists() — Method in class MigrationPublisher
Determine if the migration is already published.
- $ ProviderRepository#manifestPath — Property in class ProviderRepository
The path to the manifest.
- MaintenanceServiceProvider — Class in namespace Illuminate\Foundation\Providers
- ViewPublisher::makeDestination() — Method in class ViewPublisher
Create the destination directory if it doesn't exist.
- BcryptHasher::make() — Method in class BcryptHasher
Hash the given value.
- HasherInterface::make() — Method in class HasherInterface
Hash the given value.
- $ FormBuilder#model — Property in class FormBuilder
The current model instance for the form.
- FormBuilder::model() — Method in class FormBuilder
Create a new model based form builder.
- FormBuilder::missingOldAndModel() — Method in class FormBuilder
Determine if old input or model input exists for a key.
- HtmlBuilder::mailto() — Method in class HtmlBuilder
Generate a HTML link to an email address.
- Request::method() — Method in class Request
Get the request method.
- Request::merge() — Method in class Request
Merge new input into the current request's input array.
- Response::morphToJson() — Method in class Response
Morph the given content into JSON.
- $ Writer#monolog — Property in class Writer
The Monolog logger instance.
- MailServiceProvider — Class in namespace Illuminate\Mail
- Mailer — Class in namespace Illuminate\Mail
- Message — Class in namespace Illuminate\Mail
- MailgunTransport — Class in namespace Illuminate\Mail\Transport
- MandrillTransport — Class in namespace Illuminate\Mail\Transport
- Factory::make() — Method in class Factory
Get a new paginator instance.
- Manager — Class in namespace Illuminate\Queue\Capsule
- $ Manager#manager — Property in class Manager
The queue manager instance.
- $ SubscribeCommand#meta — Property in class SubscribeCommand
The queue meta information from Iron.io.
- IronQueue::marshal() — Method in class IronQueue
Marshal a push queue request and fire the job.
- IronQueue::marshalPushedJob() — Method in class IronQueue
Marshal out the pushed job and payload.
- $ Listener#maxTries — Property in class Listener
The amount of times to try a job before logging it failed.
- Listener::makeProcess() — Method in class Listener
Create a new Symfony process for the worker.
- Listener::memoryExceeded() — Method in class Listener
Determine if the memory limit has been exceeded.
- Queue::marshal() — Method in class Queue
Marshal a push queue request and fire the job.
- RedisQueue::migrateAllExpiredJobs() — Method in class RedisQueue
Migrate all of the waiting jobs in the queue.
- RedisQueue::migrateExpiredJobs() — Method in class RedisQueue
Migrate the delayed jobs that are ready to the regular queue.
- $ Worker#manager — Property in class Worker
The queue manager instance.
- Worker::memoryExceeded() — Method in class Worker
Determine if the memory limit has been exceeded.
- MultiConnection — Class in namespace Illuminate\Remote
- RemoteManager::multiple() — Method in class RemoteManager
Resolve a multiple connection instance.
- RemoteManager::makeConnection() — Method in class RemoteManager
Make a new connection instance.
- MakeControllerCommand — Class in namespace Illuminate\Routing\Console
- Controller::missingMethod() — Method in class Controller
Handle calls to missing methods on the controller.
- ControllerDispatcher::makeController() — Method in class ControllerDispatcher
Make a controller instance via the IoC container.
- ControllerGenerator::make() — Method in class ControllerGenerator
Create a new resourceful controller file.
- ControllerGenerator::makeDirectory() — Method in class ControllerGenerator
Create the directory for the controller.
- HostValidator::matches() — Method in class HostValidator
Validate a given rule against a route and request.
- MethodValidator — Class in namespace Illuminate\Routing\Matching
- MethodValidator::matches() — Method in class MethodValidator
Validate a given rule against a route and request.
- SchemeValidator::matches() — Method in class SchemeValidator
Validate a given rule against a route and request.
- UriValidator::matches() — Method in class UriValidator
Validate a given rule against a route and request.
- ValidatorInterface::matches() — Method in class ValidatorInterface
Validate a given rule against a route and request.
- $ Route#methods — Property in class Route
The HTTP methods the route responds to.
- Route::matches() — Method in class Route
Determine if the route matches given request.
- Route::matchToKeys() — Method in class Route
Combine a set of parameter matches with the route's keys.
- Route::methods() — Method in class Route
Get the HTTP verbs the route responds to.
- RouteCollection::match() — Method in class RouteCollection
Find the first route matching a given request.
- RouteCollection::methodNotAllowed() — Method in class RouteCollection
Throw a method not allowed HTTP exception.
- Router::match() — Method in class Router
Register a new route with the given verbs.
- Router::mergeWithLastGroup() — Method in class Router
Merge the given array with the last group stack.
- Router::mergeGroup() — Method in class Router
Merge the given group attributes.
- Router::mergeController() — Method in class Router
Merge the group stack with the controller action.
- Router::matched() — Method in class Router
Register a route matched event listener.
- Router::model() — Method in class Router
Register a model binder for a wildcard.
- $ CacheBasedSessionHandler#minutes — Property in class CacheBasedSessionHandler
The number of minutes to store the data in the cache.
- Middleware — Class in namespace Illuminate\Session
- $ Middleware#manager — Property in class Middleware
The session manager.
- $ Store#metaBag — Property in class Store
The meta-data bag instance.
- Store::migrate() — Method in class Store
- {@inheritdoc}
- Store::mergeNewFlashes() — Method in class Store
Merge new flash keys into the new flash array.
- Collection::make() — Method in class Collection
Create a new collection instance if the value isn't one already.
- Collection::map() — Method in class Collection
Run a map over each of the items.
- Collection::merge() — Method in class Collection
Merge the collection with the given items.
- MessageProviderInterface — Class in namespace Illuminate\Support\Contracts
- Mail — Class in namespace Illuminate\Support\Facades
- Response::make() — Method in class Response
Return a new response from the application.
- Manager — Class in namespace Illuminate\Support
- MessageBag — Class in namespace Illuminate\Support
- $ MessageBag#messages — Property in class MessageBag
All of the registered messages.
- MessageBag::merge() — Method in class MessageBag
Merge a new array of messages into the bag.
- Pluralizer::matchCase() — Method in class Pluralizer
Attempt to match the case on two strings.
- MacroableTrait — Class in namespace Illuminate\Support\Traits
- $ MacroableTrait#macros — Property in class MacroableTrait
The registered string macros.
- MacroableTrait::macro() — Method in class MacroableTrait
Register a custom macro.
- Translator::makeReplacements() — Method in class Translator
Make the place-holder replacements on a line.
- Factory::make() — Method in class Factory
Create a new Validator instance.
- $ Validator#messages — Property in class Validator
The message bag instance.
- Validator::mergeRules() — Method in class Validator
Merge additional rules into a given attribute.
- Validator::messages() — Method in class Validator
Get the message container for the validator.
- Factory::make() — Method in class Factory
Get the evaluated view contents for the given view.
N
- $ ClearRemindersCommand#name — Property in class ClearRemindersCommand
The console command name.
- $ RemindersControllerCommand#name — Property in class RemindersControllerCommand
The console command name.
- $ RemindersTableCommand#name — Property in class RemindersTableCommand
The console command name.
- $ CacheTableCommand#name — Property in class CacheTableCommand
The console command name.
- $ ClearCommand#name — Property in class ClearCommand
The console command name.
- NullStore — Class in namespace Illuminate\Cache
- $ TagSet#names — Property in class TagSet
The tag names.
- $ Command#name — Property in class Command
The console command name.
- $ InstallCommand#name — Property in class InstallCommand
The console command name.
- $ MigrateCommand#name — Property in class MigrateCommand
The console command name.
- $ MigrateMakeCommand#name — Property in class MigrateMakeCommand
The console command name.
- $ RefreshCommand#name — Property in class RefreshCommand
The console command name.
- RefreshCommand::needsSeeding() — Method in class RefreshCommand
Determine if the developer has requested database seeding.
- $ ResetCommand#name — Property in class ResetCommand
The console command name.
- $ RollbackCommand#name — Property in class RollbackCommand
The console command name.
- $ SeedCommand#name — Property in class SeedCommand
The console command name.
- Builder::nestedRelations() — Method in class Builder
Get the deeply nested relations for a given top-level relation.
- Model::newInstance() — Method in class Model
Create a new instance of the given model.
- Model::newFromBuilder() — Method in class Model
Create a new model instance that is existing.
- Model::newQuery() — Method in class Model
Get a new query builder for the model's table.
- Model::newQueryWithoutScope() — Method in class Model
Get a new query instance without a given scope.
- Model::newQueryWithoutScopes() — Method in class Model
Get a new query builder that doesn't have any global scopes.
- Model::newEloquentBuilder() — Method in class Model
Create a new Eloquent query builder for the model.
- Model::newBaseQueryBuilder() — Method in class Model
Get a new query builder instance for the connection.
- Model::newCollection() — Method in class Model
Create a new Eloquent Collection instance.
- Model::newPivot() — Method in class Model
Create a new pivot model instance.
- BelongsToMany::newPivotQuery() — Method in class BelongsToMany
Create a new query builder for the pivot table.
- BelongsToMany::newPivotStatement() — Method in class BelongsToMany
Get a new plain query builder for the pivot table.
- BelongsToMany::newPivotStatementForId() — Method in class BelongsToMany
Get a new pivot statement for a given "other" ID.
- BelongsToMany::newPivot() — Method in class BelongsToMany
Create a new pivot model instance.
- BelongsToMany::newExistingPivot() — Method in class BelongsToMany
Create a new existing pivot model instance.
- MorphToMany::newPivotQuery() — Method in class MorphToMany
Create a new query builder for the pivot table.
- MorphToMany::newPivot() — Method in class MorphToMany
Create a new pivot model instance.
- Relation::noConstraints() — Method in class Relation
Run a callback with constraints disabled on the relation.
- $ Migrator#notes — Property in class Migrator
The notes for the current operation.
- Migrator::note() — Method in class Migrator
Raise a note event for the migrator.
- Builder::newQuery() — Method in class Builder
Get a new instance of the query builder.
- Blueprint::nullableTimestamps() — Method in class Blueprint
Add nullable creation and update timestamps to the table.
- Filesystem::name() — Method in class Filesystem
Extract the file name from a file path.
- $ AssetPublishCommand#name — Property in class AssetPublishCommand
The console command name.
- $ AutoloadCommand#name — Property in class AutoloadCommand
The console command name.
- $ ChangesCommand#name — Property in class ChangesCommand
The console command name.
- $ ClearCompiledCommand#name — Property in class ClearCompiledCommand
The console command name.
- $ CommandMakeCommand#name — Property in class CommandMakeCommand
The console command name.
- $ ConfigPublishCommand#name — Property in class ConfigPublishCommand
The console command name.
- $ DownCommand#name — Property in class DownCommand
The console command name.
- $ EnvironmentCommand#name — Property in class EnvironmentCommand
The console command name.
- $ KeyGenerateCommand#name — Property in class KeyGenerateCommand
The console command name.
- $ MigratePublishCommand#name — Property in class MigratePublishCommand
The console command name.
- $ OptimizeCommand#name — Property in class OptimizeCommand
The console command name.
- $ RoutesCommand#name — Property in class RoutesCommand
The console command name.
- $ ServeCommand#name — Property in class ServeCommand
The console command name.
- $ TailCommand#name — Property in class TailCommand
The console command name.
- $ TinkerCommand#name — Property in class TinkerCommand
The console command name.
- $ UpCommand#name — Property in class UpCommand
The console command name.
- $ ViewPublishCommand#name — Property in class ViewPublishCommand
The console command name.
- BcryptHasher::needsRehash() — Method in class BcryptHasher
Check if the given hash has been hashed using the given options.
- HasherInterface::needsRehash() — Method in class HasherInterface
Check if the given hash has been hashed using the given options.
- FormBuilder::number() — Method in class FormBuilder
Create a number input field.
- HtmlBuilder::nestedListing() — Method in class HtmlBuilder
Create the HTML for a nested listing attribute.
- $ FailedTableCommand#name — Property in class FailedTableCommand
The console command name.
- $ FlushFailedCommand#name — Property in class FlushFailedCommand
The console command name.
- $ ForgetFailedCommand#name — Property in class ForgetFailedCommand
The console command name.
- $ ListFailedCommand#name — Property in class ListFailedCommand
The console command name.
- $ ListenCommand#name — Property in class ListenCommand
The console command name.
- $ RestartCommand#name — Property in class RestartCommand
The console command name.
- $ RetryCommand#name — Property in class RetryCommand
The console command name.
- $ SubscribeCommand#name — Property in class SubscribeCommand
The console command name.
- $ WorkCommand#name — Property in class WorkCommand
The console command name.
- $ Connection#name — Property in class Connection
The name of the connection.
- GatewayInterface::nextLine() — Method in class GatewayInterface
Get the next line of output from the server.
- SecLibGateway::nextLine() — Method in class SecLibGateway
Get the next line of output from the server.
- $ MakeControllerCommand#name — Property in class MakeControllerCommand
The console command name.
- $ RouteCollection#nameList — Property in class RouteCollection
A look-up table of routes by their names.
- Router::newRoute() — Method in class Router
Create a new Route object.
- $ SessionTableCommand#name — Property in class SessionTableCommand
The console command name.
- $ Store#name — Property in class Store
The session name.
- ClassLoader::normalizeClass() — Method in class ClassLoader
Get the normal file name for a class.
- NamespacedItemResolver — Class in namespace Illuminate\Support
- $ Validator#numericRules — Property in class Validator
The numeric related validation rules.
- $ Factory#names — Property in class Factory
All of the registered view names.
- Factory::name() — Method in class Factory
Register a named view.
- View::nest() — Method in class View
Add a view instance to the view data.
- $ WorkbenchMakeCommand#name — Property in class WorkbenchMakeCommand
The console command name.
- $ Package#name — Property in class Package
The name of the package.
O
- Guard::once() — Method in class Guard
Log a user into the application without sessions or cookies.
- Guard::onceBasic() — Method in class Guard
Perform a stateless HTTP Basic login attempt.
- Guard::onceUsingId() — Method in class Guard
Log the given user ID into the application without sessions or cookies.
- Repository::offsetExists() — Method in class Repository
Determine if a cached value exists.
- Repository::offsetGet() — Method in class Repository
Retrieve an item from the cache by key.
- Repository::offsetSet() — Method in class Repository
Store an item in the cache for the default time.
- Repository::offsetUnset() — Method in class Repository
Remove an item from the cache.
- Repository::offsetExists() — Method in class Repository
Determine if the given configuration option exists.
- Repository::offsetGet() — Method in class Repository
Get a configuration option.
- Repository::offsetSet() — Method in class Repository
Set a configuration option.
- Repository::offsetUnset() — Method in class Repository
Unset a configuration option.
- $ Command#output — Property in class Command
The output interface implementation.
- Command::option() — Method in class Command
Get the value of a command option.
- Container::offsetExists() — Method in class Container
Determine if a given offset exists.
- Container::offsetGet() — Method in class Container
Get the value at a given offset.
- Container::offsetSet() — Method in class Container
Set the value at a given offset.
- Container::offsetUnset() — Method in class Container
Unset the value at a given offset.
- $ Connector#options — Property in class Connector
The default PDO connection options.
- $ PostgresConnector#options — Property in class PostgresConnector
The default PDO connection options.
- $ SqlServerConnector#options — Property in class SqlServerConnector
The PDO connection options.
- $ Builder#onDelete — Property in class Builder
A replacement for the typical delete function.
- Builder::onDelete() — Method in class Builder
Register a replacement for the default delete function.
- Builder::orWhere() — Method in class Builder
Add an "or where" clause to the query.
- Builder::orHas() — Method in class Builder
Add a relationship count condition to the query with an "or".
- Builder::orWhereHas() — Method in class Builder
Add a relationship count condition to the query with where clauses and an "or".
- Collection::only() — Method in class Collection
Returns only the models from the collection with the specified keys.
- $ Model#original — Property in class Model
The model attribute's original state.
- $ Model#observables — Property in class Model
User exposed observable events
- Model::observe() — Method in class Model
Register an observer with the Model.
- Model::on() — Method in class Model
Begin querying the model on a given connection.
- Model::onWriteConnection() — Method in class Model
Begin querying the model on the write connection.
- Model::originalIsNumericallyEquivalent() — Method in class Model
Determine if the new and old values for a given key are numerically equivalent.
- Model::offsetExists() — Method in class Model
Determine if the given attribute exists.
- Model::offsetGet() — Method in class Model
Get the value for a given offset.
- Model::offsetSet() — Method in class Model
Set the value for a given offset.
- Model::offsetUnset() — Method in class Model
Unset the value for a given offset.
- $ BelongsTo#otherKey — Property in class BelongsTo
The associated key on the parent model.
- $ BelongsToMany#otherKey — Property in class BelongsToMany
The associated key of the relation.
- BelongsToMany::orWherePivot() — Method in class BelongsToMany
Set an or where clause for a pivot table column.
- $ Pivot#otherKey — Property in class Pivot
The name of the "other key" column.
- SoftDeletingTrait::onlyTrashed() — Method in class SoftDeletingTrait
Get a new query builder that only includes soft deletes.
- $ Builder#orders — Property in class Builder
The orderings for the query.
- $ Builder#offset — Property in class Builder
The number of records to skip.
- $ Builder#operators — Property in class Builder
All of the available clause operators.
- Builder::orWhere() — Method in class Builder
Add an "or where" clause to the query.
- Builder::orWhereRaw() — Method in class Builder
Add a raw or where clause to the query.
- Builder::orWhereBetween() — Method in class Builder
Add an or where between statement to the query.
- Builder::orWhereNotBetween() — Method in class Builder
Add an or where not between statement to the query.
- Builder::orWhereExists() — Method in class Builder
Add an or exists clause to the query.
- Builder::orWhereNotExists() — Method in class Builder
Add a where not exists clause to the query.
- Builder::orWhereIn() — Method in class Builder
Add an "or where in" clause to the query.
- Builder::orWhereNotIn() — Method in class Builder
Add an "or where not in" clause to the query.
- Builder::orWhereNull() — Method in class Builder
Add an "or where null" clause to the query.
- Builder::orWhereNotNull() — Method in class Builder
Add an "or where not null" clause to the query.
- Builder::orHaving() — Method in class Builder
Add a "or having" clause to the query.
- Builder::orHavingRaw() — Method in class Builder
Add a raw or having clause to the query.
- Builder::orderBy() — Method in class Builder
Add an "order by" clause to the query.
- Builder::oldest() — Method in class Builder
Add an "order by" clause for a timestamp to the query.
- Builder::orderByRaw() — Method in class Builder
Add a raw "order by" clause to the query.
- Builder::offset() — Method in class Builder
Set the "offset" value of the query.
- $ PostgresGrammar#operators — Property in class PostgresGrammar
All of the available clause operators.
- $ SQLiteGrammar#operators — Property in class SQLiteGrammar
All of the available clause operators.
- $ SqlServerGrammar#operators — Property in class SqlServerGrammar
All of the available clause operators.
- JoinClause::on() — Method in class JoinClause
Add an "on" clause to the join.
- JoinClause::orOn() — Method in class JoinClause
Add an "or on" clause to the join.
- JoinClause::orWhere() — Method in class JoinClause
Add an "or on where" clause to the join.
- Application::onRequest() — Method in class Application
Call a method on the default request class.
- OptimizeCommand — Class in namespace Illuminate\Foundation\Console
- OptimizeServiceProvider — Class in namespace Illuminate\Foundation\Providers
- FormBuilder::open() — Method in class FormBuilder
Open up a new HTML form.
- FormBuilder::optionGroup() — Method in class FormBuilder
Create an option group form element.
- FormBuilder::option() — Method in class FormBuilder
Create a select element option.
- FormBuilder::old() — Method in class FormBuilder
Get a value from the session's old input.
- FormBuilder::oldInputIsEmpty() — Method in class FormBuilder
Determine if the old input is empty.
- HtmlBuilder::ol() — Method in class HtmlBuilder
Generate an ordered list of items.
- HtmlBuilder::obfuscate() — Method in class HtmlBuilder
Obfuscate a string to prevent spam-bots from sniffing it.
- RedirectResponse::onlyInput() — Method in class RedirectResponse
Flash an array of input to the session.
- Request::only() — Method in class Request
Get a subset of the items from the input data.
- Request::old() — Method in class Request
Retrieve an old input item.
- $ Response#original — Property in class Response
The original content of the response.
- Paginator::offsetExists() — Method in class Paginator
Determine if the given item exists.
- Paginator::offsetGet() — Method in class Paginator
Get the item at the given offset.
- Paginator::offsetSet() — Method in class Paginator
Set the item at the given offset.
- Paginator::offsetUnset() — Method in class Paginator
Unset the item at the given key.
- $ Listener#outputHandler — Property in class Listener
The output handler callback.
- $ Connection#output — Property in class Connection
The output implementation for the connection.
- Router::options() — Method in class Router
Register a new OPTIONS route with the router.
- CacheBasedSessionHandler::open() — Method in class CacheBasedSessionHandler
- {@inheritDoc}
- CookieSessionHandler::open() — Method in class CookieSessionHandler
- {@inheritDoc}
- DatabaseSessionHandler::open() — Method in class DatabaseSessionHandler
- {@inheritDoc}
- FileSessionHandler::open() — Method in class FileSessionHandler
- {@inheritDoc}
- Arr::only() — Method in class Arr
Get a subset of the items from the given array.
- Collection::offsetExists() — Method in class Collection
Determine if an item exists at an offset.
- Collection::offsetGet() — Method in class Collection
Get an item at a given offset.
- Collection::offsetSet() — Method in class Collection
Set the item at a given offset.
- Collection::offsetUnset() — Method in class Collection
Unset the item at a given offset.
- Fluent::offsetExists() — Method in class Fluent
Determine if the given offset exists.
- Fluent::offsetGet() — Method in class Fluent
Get the value for a given offset.
- Fluent::offsetSet() — Method in class Fluent
Set the value at the given offset.
- Fluent::offsetUnset() — Method in class Fluent
Unset the value at the given offset.
- Factory::of() — Method in class Factory
Get the evaluated view contents for a named view.
- View::offsetExists() — Method in class View
Determine if a piece of data is bound.
- View::offsetGet() — Method in class View
Get a piece of bound data to the view.
- View::offsetSet() — Method in class View
Set a piece of data on the view.
- View::offsetUnset() — Method in class View
Unset a piece of data from the view.
P
- AuthServiceProvider::provides() — Method in class AuthServiceProvider
Get the services provided by the provider.
- $ Guard#provider — Property in class Guard
The user provider implementation.
- PasswordBroker — Class in namespace Illuminate\Auth\Reminders
- $ PasswordBroker#passwordValidator — Property in class PasswordBroker
The custom password validator callback.
- ReminderServiceProvider::provides() — Method in class ReminderServiceProvider
Get the services provided by the provider.
- $ ApcStore#prefix — Property in class ApcStore
A string that should be prepended to keys.
- ApcStore::put() — Method in class ApcStore
Store an item in the cache for a given number of minutes.
- ApcWrapper::put() — Method in class ApcWrapper
Store an item in the cache.
- ArrayStore::put() — Method in class ArrayStore
Store an item in the cache for a given number of minutes.
- CacheServiceProvider::provides() — Method in class CacheServiceProvider
Get the services provided by the provider.
- $ DatabaseStore#prefix — Property in class DatabaseStore
A string that should be prepended to keys.
- DatabaseStore::put() — Method in class DatabaseStore
Store an item in the cache for a given number of minutes.
- FileStore::put() — Method in class FileStore
Store an item in the cache for a given number of minutes.
- FileStore::path() — Method in class FileStore
Get the full path for the given cache key.
- $ MemcachedStore#prefix — Property in class MemcachedStore
A string that should be prepended to keys.
- MemcachedStore::put() — Method in class MemcachedStore
Store an item in the cache for a given number of minutes.
- NullStore::put() — Method in class NullStore
Store an item in the cache for a given number of minutes.
- $ RedisStore#prefix — Property in class RedisStore
A string that should be prepended to keys.
- RedisStore::put() — Method in class RedisStore
Store an item in the cache for a given number of minutes.
- RedisTaggedCache::pushForeverKeys() — Method in class RedisTaggedCache
Store a copy of the full key for each namespace segment.
- Repository::pull() — Method in class Repository
Retrieve an item from the cache and delete it.
- Repository::put() — Method in class Repository
Store an item in the cache.
- StoreInterface::put() — Method in class StoreInterface
Store an item in the cache for a given number of minutes.
- TaggedCache::put() — Method in class TaggedCache
Store an item in the cache for a given number of minutes.
- $ WinCacheStore#prefix — Property in class WinCacheStore
A string that should be prepended to keys.
- WinCacheStore::put() — Method in class WinCacheStore
Store an item in the cache for a given number of minutes.
- $ XCacheStore#prefix — Property in class XCacheStore
A string that should be prepended to keys.
- XCacheStore::put() — Method in class XCacheStore
Store an item in the cache for a given number of minutes.
- $ FileEnvironmentVariablesLoader#path — Property in class FileEnvironmentVariablesLoader
The path to the configuration files.
- $ Repository#packages — Property in class Repository
All of the registered packages.
- Repository::parseNamespacedSegments() — Method in class Repository
Parse an array of namespaced segments.
- Repository::parsePackageSegments() — Method in class Repository
Parse the segments of a package namespace.
- Repository::package() — Method in class Repository
Register a package for cascading configuration.
- $ CookieJar#path — Property in class CookieJar
The default path (if specified).
- $ Connection#pdo — Property in class Connection
The active PDO connection.
- $ Connection#postProcessor — Property in class Connection
The query post processor implementation.
- $ Connection#paginator — Property in class Connection
The paginator environment instance.
- $ Connection#pretending — Property in class Connection
Indicates if the connection is in a "dry run".
- Connection::prepareBindings() — Method in class Connection
Prepare the query bindings for execution.
- Connection::pretend() — Method in class Connection
Execute the given callback in "dry run" mode.
- Connection::pretending() — Method in class Connection
Determine if the connection in a "dry run".
- ConnectionInterface::prepareBindings() — Method in class ConnectionInterface
Prepare the query bindings for execution.
- ConnectionInterface::pretend() — Method in class ConnectionInterface
Execute the given callback in "dry run" mode.
- ConnectionFactory::parseConfig() — Method in class ConnectionFactory
Parse and prepare the database configuration.
- PostgresConnector — Class in namespace Illuminate\Database\Connectors
- $ MigrateCommand#packagePath — Property in class MigrateCommand
The path to the packages directory (vendor).
- MigrateCommand::prepareDatabase() — Method in class MigrateCommand
Prepare the migration database for running.
- $ MigrateMakeCommand#packagePath — Property in class MigrateMakeCommand
The path to the packages directory (vendor).
- DatabaseManager::parseConnectionName() — Method in class DatabaseManager
Parse the connection into an array of the name and read / write type.
- DatabaseManager::purge() — Method in class DatabaseManager
Disconnect from the given database and remove from local cache.
- DatabaseManager::prepare() — Method in class DatabaseManager
Prepare the database connection instance.
- $ Builder#passthru — Property in class Builder
The methods that should be returned from query builder.
- Builder::pluck() — Method in class Builder
Pluck a single column from the database.
- Builder::paginate() — Method in class Builder
Get a paginator for the "select" statement.
- Builder::parseRelations() — Method in class Builder
Parse a list of relations into individuals.
- Builder::parseNested() — Method in class Builder
Parse the nested relationships in a relation.
- $ Model#primaryKey — Property in class Model
The primary key for the model.
- $ Model#perPage — Property in class Model
The number of models to return for pagination.
- Model::performDeleteOnModel() — Method in class Model
Perform the actual delete query on this model instance.
- Model::push() — Method in class Model
Save the model and all of its relationships.
- Model::performUpdate() — Method in class Model
Perform a model update operation.
- Model::performInsert() — Method in class Model
Perform a model insert operation.
- $ BelongsToMany#pivotColumns — Property in class BelongsToMany
The pivot table columns to retrieve.
- $ BelongsToMany#pivotWheres — Property in class BelongsToMany
Any pivot table restrictions.
- BelongsToMany::paginate() — Method in class BelongsToMany
Get a paginator for the "select" statement.
- HasManyThrough::paginate() — Method in class HasManyThrough
Get a paginator for the "select" statement.
- Pivot — Class in namespace Illuminate\Database\Eloquent\Relations
- $ Pivot#parent — Property in class Pivot
The parent model of the relationship.
- $ Relation#parent — Property in class Relation
The parent model instance.
- SoftDeletingTrait::performDeleteOnModel() — Method in class SoftDeletingTrait
Perform the actual delete query on this model instance.
- Grammar::parameterize() — Method in class Grammar
Create query parameter place-holders for an array.
- Grammar::parameter() — Method in class Grammar
Get the appropriate query parameter place-holder for a value.
- MigrationServiceProvider::provides() — Method in class MigrationServiceProvider
Get the services provided by the provider.
- $ MigrationCreator#postCreate — Property in class MigrationCreator
The registered post create hooks.
- MigrationCreator::populateStub() — Method in class MigrationCreator
Populate the place-holders in the migration stub.
- Migrator::pretendToRun() — Method in class Migrator
Pretend to run the migrations.
- PostgresConnection — Class in namespace Illuminate\Database
- $ Builder#processor — Property in class Builder
The database query post processor instance.
- Builder::pluck() — Method in class Builder
Pluck a single column's value from the first result of a query.
- Builder::paginate() — Method in class Builder
Get a paginator for the "select" statement.
- PostgresGrammar — Class in namespace Illuminate\Database\Query\Grammars
- MySqlProcessor::processColumnListing() — Method in class MySqlProcessor
Process the results of a column listing query.
- PostgresProcessor — Class in namespace Illuminate\Database\Query\Processors
- PostgresProcessor::processInsertGetId() — Method in class PostgresProcessor
Process an "insert get ID" query.
- PostgresProcessor::processColumnListing() — Method in class PostgresProcessor
Process the results of a column listing query.
- Processor — Class in namespace Illuminate\Database\Query\Processors
- Processor::processSelect() — Method in class Processor
Process the results of a "select" query.
- Processor::processInsertGetId() — Method in class Processor
Process an "insert get ID" query.
- Processor::processColumnListing() — Method in class Processor
Process the results of a column listing query.
- SQLiteProcessor::processColumnListing() — Method in class SQLiteProcessor
Process the results of a column listing query.
- SqlServerProcessor::processInsertGetId() — Method in class SqlServerProcessor
Process an "insert get ID" query.
- SqlServerProcessor::processColumnListing() — Method in class SqlServerProcessor
Process the results of a column listing query.
- Blueprint::primary() — Method in class Blueprint
Specify the primary key(s) for the table.
- Grammar::prefixArray() — Method in class Grammar
Add a prefix to an array of values.
- PostgresGrammar — Class in namespace Illuminate\Database\Schema\Grammars
- SeedServiceProvider::provides() — Method in class SeedServiceProvider
Get the services provided by the provider.
- Encrypter::padAndMcrypt() — Method in class Encrypter
Pad and use mcrypt on the given value and input vector.
- Encrypter::paddingIsValid() — Method in class Encrypter
Determine if the given padding for a value is valid.
- $ Handler#plainDisplayer — Property in class Handler
The plain exception displayer.
- Handler::pushError() — Method in class Handler
Register an application error handler at the bottom of the stack.
- Handler::prepareResponse() — Method in class Handler
Prepare the given response.
- PlainDisplayer — Class in namespace Illuminate\Exception
- Filesystem::put() — Method in class Filesystem
Write the contents of a file.
- Filesystem::prepend() — Method in class Filesystem
Prepend to a file.
- AliasLoader::prependToLoaderStack() — Method in class AliasLoader
Prepend the load method to the auto-loader stack.
- Application::prepareRequest() — Method in class Application
Prepare the request by injecting any services.
- Application::prepareResponse() — Method in class Application
Prepare the given value as a Response object.
- Application::pushError() — Method in class Application
Register an error handler at the bottom of the stack.
- $ AssetPublisher#publishPath — Property in class AssetPublisher
The path where assets should be published.
- $ AssetPublisher#packagePath — Property in class AssetPublisher
The path where packages are located.
- AssetPublisher::publish() — Method in class AssetPublisher
Copy all assets from a given path to the publish path.
- AssetPublisher::publishPackage() — Method in class AssetPublisher
Publish a given package's assets to the publish path.
- $ ConfigPublisher#publishPath — Property in class ConfigPublisher
The destination of the config files.
- $ ConfigPublisher#packagePath — Property in class ConfigPublisher
The path to the application's packages.
- ConfigPublisher::publish() — Method in class ConfigPublisher
Publish configuration files from a given path.
- ConfigPublisher::publishPackage() — Method in class ConfigPublisher
Publish the configuration files for a package.
- AssetPublishCommand::publishAssets() — Method in class AssetPublishCommand
Publish the assets for a given package name.
- TinkerCommand::prompt() — Method in class TinkerCommand
Prompt the developer for a command.
- MigrationPublisher::publish() — Method in class MigrationPublisher
Publish the given package's migrations.
- ProviderRepository — Class in namespace Illuminate\Foundation
- ArtisanServiceProvider::provides() — Method in class ArtisanServiceProvider
Get the services provided by the provider.
- CommandCreatorServiceProvider::provides() — Method in class CommandCreatorServiceProvider
Get the services provided by the provider.
- ComposerServiceProvider::provides() — Method in class ComposerServiceProvider
Get the services provided by the provider.
- $ ConsoleSupportServiceProvider#providers — Property in class ConsoleSupportServiceProvider
The provider class names.
- ConsoleSupportServiceProvider::provides() — Method in class ConsoleSupportServiceProvider
Get the services provided by the provider.
- KeyGeneratorServiceProvider::provides() — Method in class KeyGeneratorServiceProvider
Get the services provided by the provider.
- MaintenanceServiceProvider::provides() — Method in class MaintenanceServiceProvider
Get the services provided by the provider.
- OptimizeServiceProvider::provides() — Method in class OptimizeServiceProvider
Get the services provided by the provider.
- PublisherServiceProvider — Class in namespace Illuminate\Foundation\Providers
- PublisherServiceProvider::provides() — Method in class PublisherServiceProvider
Get the services provided by the provider.
- RouteListServiceProvider::provides() — Method in class RouteListServiceProvider
Get the services provided by the provider.
- ServerServiceProvider::provides() — Method in class ServerServiceProvider
Get the services provided by the provider.
- TinkerServiceProvider::provides() — Method in class TinkerServiceProvider
Get the services provided by the provider.
- $ ViewPublisher#publishPath — Property in class ViewPublisher
The destination of the view files.
- $ ViewPublisher#packagePath — Property in class ViewPublisher
The path to the application's packages.
- ViewPublisher::publish() — Method in class ViewPublisher
Publish view files from a given path.
- ViewPublisher::publishPackage() — Method in class ViewPublisher
Publish the view files for a package.
- HashServiceProvider::provides() — Method in class HashServiceProvider
Get the services provided by the provider.
- FormBuilder::password() — Method in class FormBuilder
Create a password input field.
- HtmlServiceProvider::provides() — Method in class HtmlServiceProvider
Get the services provided by the provider.
- RedirectResponse::parseErrors() — Method in class RedirectResponse
Parse the given errors into an appropriate value.
- Request::path() — Method in class Request
Get the current path info for the request.
- LogServiceProvider::provides() — Method in class LogServiceProvider
Get the services provided by the provider.
- Writer::parseLevel() — Method in class Writer
Parse the string level into a Monolog constant.
- MailServiceProvider::provides() — Method in class MailServiceProvider
Get the services provided by the provider.
- $ Mailer#pretending — Property in class Mailer
Indicates if the actual sending is disabled.
- $ Mailer#parsedViews — Property in class Mailer
Array of parsed views containing html and text view name.
- Mailer::plain() — Method in class Mailer
Send a new message when only a plain part.
- Mailer::parseView() — Method in class Mailer
Parse the given view name or array.
- Mailer::pretend() — Method in class Mailer
Tell the mailer to not really send messages.
- Message::priority() — Method in class Message
Set the message priority level.
- Message::prepAttachment() — Method in class Message
Prepare and attach the given attachment.
- $ Factory#pageName — Property in class Factory
The input parameter used for the current page.
- PaginationServiceProvider — Class in namespace Illuminate\Pagination
- PaginationServiceProvider::provides() — Method in class PaginationServiceProvider
Get the services provided by the provider.
- Paginator — Class in namespace Illuminate\Pagination
- $ Paginator#perPage — Property in class Paginator
The amount of items to show per page.
- Presenter — Class in namespace Illuminate\Pagination
- $ Presenter#paginator — Property in class Presenter
The paginator instance being rendered.
- $ BeanstalkdQueue#pheanstalk — Property in class BeanstalkdQueue
The Pheanstalk instance.
- BeanstalkdQueue::push() — Method in class BeanstalkdQueue
Push a new job onto the queue.
- BeanstalkdQueue::pushRaw() — Method in class BeanstalkdQueue
Push a raw payload onto the queue.
- BeanstalkdQueue::pop() — Method in class BeanstalkdQueue
Pop the next job off of the queue.
- Manager::push() — Method in class Manager
Push a new job onto the queue.
- ListFailedCommand::parseFailedJob() — Method in class ListFailedCommand
Parse the failed job row.
- FailConsoleServiceProvider::provides() — Method in class FailConsoleServiceProvider
Get the services provided by the provider.
- IronQueue::push() — Method in class IronQueue
Push a new job onto the queue.
- IronQueue::pushRaw() — Method in class IronQueue
Push a raw payload onto the queue.
- IronQueue::pop() — Method in class IronQueue
Pop the next job off of the queue.
- IronQueue::parseJobBody() — Method in class IronQueue
Parse the job body for firing.
- $ BeanstalkdJob#pheanstalk — Property in class BeanstalkdJob
The Pheanstalk instance.
- $ IronJob#pushed — Property in class IronJob
Indicates if the message was a push message.
- Job::parseJob() — Method in class Job
Parse the job declaration into class and method.
- QueueInterface::push() — Method in class QueueInterface
Push a new job onto the queue.
- QueueInterface::pushRaw() — Method in class QueueInterface
Push a raw payload onto the queue.
- QueueInterface::pop() — Method in class QueueInterface
Pop the next job off of the queue.
- QueueServiceProvider::provides() — Method in class QueueServiceProvider
Get the services provided by the provider.
- RedisQueue::push() — Method in class RedisQueue
Push a new job onto the queue.
- RedisQueue::pushRaw() — Method in class RedisQueue
Push a raw payload onto the queue.
- RedisQueue::pop() — Method in class RedisQueue
Pop the next job off of the queue.
- RedisQueue::pushExpiredJobsOntoNewQueue() — Method in class RedisQueue
Push all of the given jobs onto another queue.
- SqsQueue::push() — Method in class SqsQueue
Push a new job onto the queue.
- SqsQueue::pushRaw() — Method in class SqsQueue
Push a raw payload onto the queue.
- SqsQueue::pop() — Method in class SqsQueue
Pop the next job off of the queue.
- SyncQueue::push() — Method in class SyncQueue
Push a new job onto the queue.
- SyncQueue::pushRaw() — Method in class SyncQueue
Push a raw payload onto the queue.
- SyncQueue::pop() — Method in class SyncQueue
Pop the next job off of the queue.
- Worker::pop() — Method in class Worker
Listen to the given queue.
- Worker::process() — Method in class Worker
Process a given job from the queue.
- RedisServiceProvider::provides() — Method in class RedisServiceProvider
Get the services provided by the provider.
- Connection::put() — Method in class Connection
Upload a local file to the server.
- Connection::putString() — Method in class Connection
Upload a string to to the given file on the server.
- ConnectionInterface::put() — Method in class ConnectionInterface
Upload a local file to the server.
- ConnectionInterface::putString() — Method in class ConnectionInterface
Upload a string to to the given file on the server.
- GatewayInterface::put() — Method in class GatewayInterface
Upload a local file to the server.
- GatewayInterface::putString() — Method in class GatewayInterface
Upload a string to to the given file on the server.
- MultiConnection::put() — Method in class MultiConnection
Upload a local file to the server.
- MultiConnection::putString() — Method in class MultiConnection
Upload a string to to the given file on the server.
- RemoteServiceProvider::provides() — Method in class RemoteServiceProvider
Get the services provided by the provider.
- $ SecLibGateway#port — Property in class SecLibGateway
The SSH port on the server.
- SecLibGateway::put() — Method in class SecLibGateway
Upload a local file to the server.
- SecLibGateway::putString() — Method in class SecLibGateway
Upload a string to to the given file on the server.
- $ MakeControllerCommand#path — Property in class MakeControllerCommand
The path to the controller directory.
- Controller::parseFilter() — Method in class Controller
Parse the given filter and options.
- ControllerServiceProvider::provides() — Method in class ControllerServiceProvider
Get the services provided by the provider.
- $ Route#parameters — Property in class Route
The array of matched parameters.
- $ Route#parameterNames — Property in class Route
The parameter names for the route.
- Route::parseFilters() — Method in class Route
Parse the given filter string.
- Route::parseFilter() — Method in class Route
Parse the given filter into name and parameters.
- Route::parseParameterFilter() — Method in class Route
Parse a filter with parameters.
- Route::parameter() — Method in class Route
Get a given parameter from the route.
- Route::parameters() — Method in class Route
Get the key / value list of parameters for the route.
- Route::parametersWithoutNulls() — Method in class Route
Get the key / value list of parameters without null values.
- Route::parameterNames() — Method in class Route
Get all of the parameter names for the route.
- Route::parseAction() — Method in class Route
Parse the route action into a standard array.
- Route::parseWhere() — Method in class Route
Parse arguments to the where method into an array.
- Route::prefix() — Method in class Route
Add a prefix to the route URI.
- $ Router#patternFilters — Property in class Router
The registered pattern based filters.
- $ Router#patterns — Property in class Router
The globally available parameter patterns.
- Router::post() — Method in class Router
Register a new POST route with the router.
- Router::put() — Method in class Router
Register a new PUT route with the router.
- Router::patch() — Method in class Router
Register a new PATCH route with the router.
- Router::prefixedResource() — Method in class Router
Build a set of prefixed resource routes.
- Router::prefix() — Method in class Router
Prefix the given URI with the last prefix.
- Router::prependGroupUses() — Method in class Router
Prepend the last group uses onto the use clause.
- Router::performBinding() — Method in class Router
Call the binding callback for the given key.
- Router::parseFilter() — Method in class Router
Parse the registered filter.
- Router::pattern() — Method in class Router
Set a global where pattern on all routes
- Router::patterns() — Method in class Router
Set a group of global where patterns on all routes
- Router::patternsByMethod() — Method in class Router
Filter pattern filters that don't apply to the request verb.
- Router::prepareResponse() — Method in class Router
Create a response instance from the given value.
- UrlGenerator::previous() — Method in class UrlGenerator
Get the URL for the previous request.
- CommandsServiceProvider::provides() — Method in class CommandsServiceProvider
Get the services provided by the provider.
- $ FileSessionHandler#path — Property in class FileSessionHandler
The path where sessions should be stored.
- Store::pull() — Method in class Store
Get the value of a given key and then forget it.
- Store::put() — Method in class Store
Put a key / value pair or array of key / value pairs in the session.
- Store::push() — Method in class Store
Push a value onto a session array.
- Arr::pluck() — Method in class Arr
Pluck an array of values from an array.
- Arr::pull() — Method in class Arr
Get a value from the array, and remove it.
- Collection::pop() — Method in class Collection
Get and remove the last item from the collection.
- Collection::prepend() — Method in class Collection
Push an item onto the beginning of the collection.
- Collection::push() — Method in class Collection
Push an item onto the end of the collection.
- Collection::pull() — Method in class Collection
Pulls an item from the collection.
- Collection::put() — Method in class Collection
Put an item in the collection by key.
- ResponsePreparerInterface::prepareResponse() — Method in class ResponsePreparerInterface
Prepare the given value as a Response object.
- Paginator — Class in namespace Illuminate\Support\Facades
- Password — Class in namespace Illuminate\Support\Facades
- $ NamespacedItemResolver#parsed — Property in class NamespacedItemResolver
A cache of the parsed items.
- NamespacedItemResolver::parseKey() — Method in class NamespacedItemResolver
Parse a key into namespace, group, and item.
- NamespacedItemResolver::parseBasicSegments() — Method in class NamespacedItemResolver
Parse an array of basic segments.
- NamespacedItemResolver::parseNamespacedSegments() — Method in class NamespacedItemResolver
Parse an array of namespaced segments.
- Pluralizer — Class in namespace Illuminate\Support
- $ Pluralizer#plural — Property in class Pluralizer
Plural word form rules.
- $ Pluralizer#pluralCache — Property in class Pluralizer
The cached copies of the plural inflections.
- Pluralizer::plural() — Method in class Pluralizer
Get the plural form of the given word.
- ServiceProvider::package() — Method in class ServiceProvider
Register the package's component namespaces.
- ServiceProvider::provides() — Method in class ServiceProvider
Get the services provided by the provider.
- Str::parseCallback() — Method in class Str
Parse a Class@method style callback into class and method.
- Str::plural() — Method in class Str
Get the plural form of an English word.
- ViewErrorBag::put() — Method in class ViewErrorBag
Add a new MessageBag instance to the bags.
- $ FileLoader#path — Property in class FileLoader
The default path for the loader.
- TranslationServiceProvider::provides() — Method in class TranslationServiceProvider
Get the services provided by the provider.
- Translator::parseKey() — Method in class Translator
Parse a key into namespace, group, and item.
- Translator::parseLocale() — Method in class Translator
Get the array of locales to be checked.
- PresenceVerifierInterface — Class in namespace Illuminate\Validation
- ValidationServiceProvider::provides() — Method in class ValidationServiceProvider
Get the services provided by the provider.
- $ Validator#presenceVerifier — Property in class Validator
The Presence Verifier implementation.
- Validator::parseData() — Method in class Validator
Parse the data and hydrate the files array.
- Validator::passes() — Method in class Validator
Determine if the data passes the validation rules.
- Validator::presentOrRuleIsImplicit() — Method in class Validator
Determine if the field is present, or the rule implies required.
- Validator::passesOptionalCheck() — Method in class Validator
Determine if the attribute passes any optional check.
- Validator::parseRule() — Method in class Validator
Extract the rule name and parameters from a rule.
- Validator::parseArrayRule() — Method in class Validator
Parse an array based rule.
- Validator::parseStringRule() — Method in class Validator
Parse a string based rule.
- Validator::parseParameters() — Method in class Validator
Parse a parameter list.
- $ BladeCompiler#path — Property in class BladeCompiler
The file currently being compiled.
- BladeCompiler::parseToken() — Method in class BladeCompiler
Parse the tokens from the template.
- PhpEngine — Class in namespace Illuminate\View\Engines
- Factory::parseData() — Method in class Factory
Parse the given data into a raw array.
- Factory::parseClassEvent() — Method in class Factory
Parse a class based composer name.
- Factory::prependNamespace() — Method in class Factory
Prepend a new namespace to the loader.
- $ FileViewFinder#paths — Property in class FileViewFinder
The array of active view paths.
- FileViewFinder::prependNamespace() — Method in class FileViewFinder
Prepend a namespace hint to the finder.
- $ View#path — Property in class View
The path to the view file.
- ViewFinderInterface::prependNamespace() — Method in class ViewFinderInterface
Prepend a namespace hint to the finder.
- Package — Class in namespace Illuminate\Workbench
- PackageCreator — Class in namespace Illuminate\Workbench
- WorkbenchServiceProvider::provides() — Method in class WorkbenchServiceProvider
Get the services provided by the provider.
Q
- Guard::queueRecallerCookie() — Method in class Guard
Queue the recaller cookie into the cookie jar.
- Command::question() — Method in class Command
Write a string as question output.
- $ CookieJar#queued — Property in class CookieJar
All of the cookies queued for sending.
- CookieJar::queued() — Method in class CookieJar
Get a queued cookie instance.
- CookieJar::queue() — Method in class CookieJar
Queue a cookie to send with the next response.
- Queue — Class in namespace Illuminate\Cookie
- $ Connection#queryGrammar — Property in class Connection
The query grammar implementation.
- $ Connection#queryLog — Property in class Connection
All of the queries run against the connection.
- $ Builder#query — Property in class Builder
The base query builder instance.
- Model::query() — Method in class Model
Begin querying the model.
- $ Relation#query — Property in class Relation
The Eloquent query builder instance.
- QueryException — Class in namespace Illuminate\Database
- Dispatcher::queue() — Method in class Dispatcher
Register a queued event and payload.
- Request::query() — Method in class Request
Retrieve a query string item from the request.
- $ Mailer#queue — Property in class Mailer
- Mailer::queue() — Method in class Mailer
Queue a new e-mail message for sending.
- Mailer::queueOn() — Method in class Mailer
Queue a new e-mail message for sending on the given queue.
- $ Paginator#query — Property in class Paginator
All of the additional query string values.
- $ Job#queue — Property in class Job
The name of the queue the job belongs to.
- Queue — Class in namespace Illuminate\Queue
- QueueInterface — Class in namespace Illuminate\Queue
- QueueManager — Class in namespace Illuminate\Queue
- QueueServiceProvider — Class in namespace Illuminate\Queue
- Worker::queueShouldRestart() — Method in class Worker
Determine if the queue worker should restart.
- Queue — Class in namespace Illuminate\Support\Facades
- Str::quickRandom() — Method in class Str
Generate a "random" alpha-numeric string.
R
- AuthServiceProvider::register() — Method in class AuthServiceProvider
Register the service provider.
- RemindersControllerCommand — Class in namespace Illuminate\Auth\Console
- RemindersTableCommand — Class in namespace Illuminate\Auth\Console
- DatabaseUserProvider::retrieveById() — Method in class DatabaseUserProvider
Retrieve a user by their unique identifier.
- DatabaseUserProvider::retrieveByToken() — Method in class DatabaseUserProvider
Retrieve a user by their unique identifier and "remember me" token.
- DatabaseUserProvider::retrieveByCredentials() — Method in class DatabaseUserProvider
Retrieve a user by the given credentials.
- EloquentUserProvider::retrieveById() — Method in class EloquentUserProvider
Retrieve a user by their unique identifier.
- EloquentUserProvider::retrieveByToken() — Method in class EloquentUserProvider
Retrieve a user by their unique identifier and "remember me" token.
- EloquentUserProvider::retrieveByCredentials() — Method in class EloquentUserProvider
Retrieve a user by the given credentials.
- $ Guard#request — Property in class Guard
The request instance.
- Guard::refreshRememberToken() — Method in class Guard
Refresh the remember token for the user.
- DatabaseReminderRepository::reminderExpired() — Method in class DatabaseReminderRepository
Determine if the reminder has expired.
- $ PasswordBroker#reminders — Property in class PasswordBroker
The password reminder repository.
- $ PasswordBroker#reminderView — Property in class PasswordBroker
The view of the password reminder e-mail.
- PasswordBroker::remind() — Method in class PasswordBroker
Send a password reminder to a user.
- PasswordBroker::reset() — Method in class PasswordBroker
Reset the password for the given token.
- RemindableInterface — Class in namespace Illuminate\Auth\Reminders
- RemindableTrait — Class in namespace Illuminate\Auth\Reminders
- ReminderRepositoryInterface — Class in namespace Illuminate\Auth\Reminders
- ReminderServiceProvider — Class in namespace Illuminate\Auth\Reminders
- ReminderServiceProvider::register() — Method in class ReminderServiceProvider
Register the service provider.
- ReminderServiceProvider::registerPasswordBroker() — Method in class ReminderServiceProvider
Register the password broker instance.
- ReminderServiceProvider::registerReminderRepository() — Method in class ReminderServiceProvider
Register the reminder repository implementation.
- ReminderServiceProvider::registerCommands() — Method in class ReminderServiceProvider
Register the auth related console commands.
- UserProviderInterface::retrieveById() — Method in class UserProviderInterface
Retrieve a user by their unique identifier.
- UserProviderInterface::retrieveByToken() — Method in class UserProviderInterface
Retrieve a user by by their unique identifier and "remember me" token.
- UserProviderInterface::retrieveByCredentials() — Method in class UserProviderInterface
Retrieve a user by the given credentials.
- CacheManager::repository() — Method in class CacheManager
Create a new cache repository with the given implementation.
- CacheServiceProvider::register() — Method in class CacheServiceProvider
Register the service provider.
- CacheServiceProvider::registerCommands() — Method in class CacheServiceProvider
Register the cache related console commands.
- RedisStore — Class in namespace Illuminate\Cache
- $ RedisStore#redis — Property in class RedisStore
The Redis database connection.
- RedisTaggedCache — Class in namespace Illuminate\Cache
- Repository — Class in namespace Illuminate\Cache
- Repository::remember() — Method in class Repository
Get an item from the cache, or store the default value.
- Repository::rememberForever() — Method in class Repository
Get an item from the cache, or store the default value forever.
- TagSet::reset() — Method in class TagSet
Reset all tags in the set.
- TagSet::resetTag() — Method in class TagSet
Reset the tag and return the new tag identifier
- TaggedCache::remember() — Method in class TaggedCache
Get an item from the cache, or store the default value.
- TaggedCache::rememberForever() — Method in class TaggedCache
Get an item from the cache, or store the default value forever.
- Repository — Class in namespace Illuminate\Config
- Application::resolve() — Method in class Application
Add a command, resolving through the application.
- Application::resolveCommands() — Method in class Application
Resolve an array of commands through the application.
- Application::renderException() — Method in class Application
Render the given exception.
- Command::run() — Method in class Command
Run the console command.
- $ Container#resolved — Property in class Container
An array of the types that have been resolved.
- $ Container#reboundCallbacks — Property in class Container
All of the registered rebound callbacks.
- $ Container#resolvingCallbacks — Property in class Container
All of the registered resolving callbacks.
- Container::resolvable() — Method in class Container
Determine if a given string is resolvable.
- Container::resolved() — Method in class Container
Determine if the given abstract type has been resolved.
- Container::rebinding() — Method in class Container
Bind a new callback to an abstract's rebind event.
- Container::refresh() — Method in class Container
Refresh an instance on the given target and method.
- Container::rebound() — Method in class Container
Fire the "rebound" callbacks for the given abstract type.
- Container::resolveNonClass() — Method in class Container
Resolve a non-class hinted dependency.
- Container::resolveClass() — Method in class Container
Resolve a class based dependency from the container.
- Container::resolving() — Method in class Container
Register a new resolving callback.
- Container::resolvingAny() — Method in class Container
Register a new resolving callback for all types.
- CookieServiceProvider::register() — Method in class CookieServiceProvider
Register the service provider.
- $ Connection#readPdo — Property in class Connection
The active PDO connection used for reads.
- $ Connection#reconnector — Property in class Connection
The reconnector instance for the connection.
- Connection::raw() — Method in class Connection
Get a new raw query expression.
- Connection::rollBack() — Method in class Connection
Rollback the active database transaction.
- Connection::run() — Method in class Connection
Run a SQL statement and log its execution context.
- Connection::runQueryCallback() — Method in class Connection
Run a SQL statement.
- Connection::reconnect() — Method in class Connection
Reconnect to the database.
- Connection::reconnectIfMissingConnection() — Method in class Connection
Reconnect to the database if a PDO connection is missing.
- ConnectionInterface::raw() — Method in class ConnectionInterface
Get a new raw query expression.
- ConnectionInterface::rollBack() — Method in class ConnectionInterface
Rollback the active database transaction.
- $ InstallCommand#repository — Property in class InstallCommand
The repository instance.
- RefreshCommand — Class in namespace Illuminate\Database\Console\Migrations
- RefreshCommand::runSeeder() — Method in class RefreshCommand
Run the database seeder command.
- ResetCommand — Class in namespace Illuminate\Database\Console\Migrations
- RollbackCommand — Class in namespace Illuminate\Database\Console\Migrations
- $ SeedCommand#resolver — Property in class SeedCommand
The connection resolver instance.
- DatabaseManager::reconnect() — Method in class DatabaseManager
Reconnect to the given database.
- DatabaseManager::refreshPdoConnections() — Method in class DatabaseManager
Refresh the PDO connections on a given connection.
- DatabaseServiceProvider::register() — Method in class DatabaseServiceProvider
Register the service provider.
- $ Model#relations — Property in class Model
The loaded relationships for the model.
- $ Model#resolver — Property in class Model
The connection resolver instance.
- Model::registerModelEvent() — Method in class Model
Register a model event with the dispatcher.
- Model::removeObservableEvents() — Method in class Model
Remove an observable event name.
- Model::removeGlobalScopes() — Method in class Model
Remove all of the global scopes from an Eloquent builder.
- Model::reguard() — Method in class Model
Enable the mass assignment restrictions.
- Model::removeTableFromKey() — Method in class Model
Remove the table name from a given key.
- Model::relationsToArray() — Method in class Model
Get the model's relationships in array form.
- Model::replicate() — Method in class Model
Clone the model into a new, non-existing instance.
- Model::resolveConnection() — Method in class Model
Resolve a connection instance.
- $ BelongsTo#relation — Property in class BelongsTo
The name of the relationship.
- $ BelongsToMany#relationName — Property in class BelongsToMany
The "name" of the relationship.
- Relation — Class in namespace Illuminate\Database\Eloquent\Relations
- $ Relation#related — Property in class Relation
The related model instance.
- Relation::rawUpdate() — Method in class Relation
Run a raw update against the base query.
- Relation::relatedUpdatedAt() — Method in class Relation
Get the name of the related model's "updated at" column.
- ScopeInterface::remove() — Method in class ScopeInterface
Remove the scope from the given Eloquent query builder.
- SoftDeletingScope::remove() — Method in class SoftDeletingScope
Remove the scope from the given Eloquent query builder.
- SoftDeletingTrait::runSoftDelete() — Method in class SoftDeletingTrait
Perform the actual delete query on this model instance.
- SoftDeletingTrait::restore() — Method in class SoftDeletingTrait
Restore a soft-deleted model instance.
- SoftDeletingTrait::restoring() — Method in class SoftDeletingTrait
Register a restoring model event with the dispatcher.
- SoftDeletingTrait::restored() — Method in class SoftDeletingTrait
Register a restored model event with the dispatcher.
- MigrationServiceProvider::register() — Method in class MigrationServiceProvider
Register the service provider.
- MigrationServiceProvider::registerRepository() — Method in class MigrationServiceProvider
Register the migration repository service.
- MigrationServiceProvider::registerMigrator() — Method in class MigrationServiceProvider
Register the migrator service.
- MigrationServiceProvider::registerCommands() — Method in class MigrationServiceProvider
Register all of the migration commands.
- MigrationServiceProvider::registerMigrateCommand() — Method in class MigrationServiceProvider
Register the "migrate" migration command.
- MigrationServiceProvider::registerRollbackCommand() — Method in class MigrationServiceProvider
Register the "rollback" migration command.
- MigrationServiceProvider::registerResetCommand() — Method in class MigrationServiceProvider
Register the "reset" migration command.
- MigrationServiceProvider::registerRefreshCommand() — Method in class MigrationServiceProvider
Register the "refresh" migration command.
- MigrationServiceProvider::registerInstallCommand() — Method in class MigrationServiceProvider
Register the "install" migration command.
- MigrationServiceProvider::registerMakeCommand() — Method in class MigrationServiceProvider
Register the "install" migration command.
- MigrationServiceProvider::registerCreator() — Method in class MigrationServiceProvider
Register the migration creator.
- $ DatabaseMigrationRepository#resolver — Property in class DatabaseMigrationRepository
The database connection resolver instance.
- DatabaseMigrationRepository::repositoryExists() — Method in class DatabaseMigrationRepository
Determine if the migration repository exists.
- MigrationRepositoryInterface::repositoryExists() — Method in class MigrationRepositoryInterface
Determine if the migration repository exists.
- $ Migrator#repository — Property in class Migrator
The migration repository implementation.
- $ Migrator#resolver — Property in class Migrator
The connection resolver instance.
- Migrator::run() — Method in class Migrator
Run the outstanding migrations at a given path.
- Migrator::runMigrationList() — Method in class Migrator
Run an array of migrations.
- Migrator::runUp() — Method in class Migrator
Run "up" a migration instance.
- Migrator::rollback() — Method in class Migrator
Rollback the last migration operation.
- Migrator::runDown() — Method in class Migrator
Run "down" a migration instance.
- Migrator::requireFiles() — Method in class Migrator
Require in all the migration files in a given path.
- Migrator::resolve() — Method in class Migrator
Resolve a migration instance from a file.
- Migrator::resolveConnection() — Method in class Migrator
Resolve the database connection instance.
- Migrator::repositoryExists() — Method in class Migrator
Determine if the migration repository exists.
- Builder::rightJoin() — Method in class Builder
Add a right join to the query.
- Builder::rightJoinWhere() — Method in class Builder
Add a "right join where" clause to the query.
- Builder::remember() — Method in class Builder
Indicate that the query results should be cached.
- Builder::rememberForever() — Method in class Builder
Indicate that the query results should be cached forever.
- Builder::runSelect() — Method in class Builder
Run the query as a "select" statement against the connection.
- Builder::restoreFieldsForCount() — Method in class Builder
Restore certain fields for a pagination count.
- Builder::raw() — Method in class Builder
Create a raw database expression.
- Grammar::removeLeadingBoolean() — Method in class Grammar
Remove the leading boolean from a statement.
- Blueprint::renameColumn() — Method in class Blueprint
Indicate that the given columns should be renamed.
- Blueprint::rename() — Method in class Blueprint
Rename the table to a given name.
- Blueprint::rememberToken() — Method in class Blueprint
Adds the
remember_token
column to the table.- Blueprint::removeColumn() — Method in class Blueprint
Remove a column from the schema blueprint.
- $ Builder#resolver — Property in class Builder
The Blueprint resolver callback.
- Builder::rename() — Method in class Builder
Rename a table on the schema.
- SeedServiceProvider::register() — Method in class SeedServiceProvider
Register the service provider.
- SeedServiceProvider::registerSeedCommand() — Method in class SeedServiceProvider
Register the seed console command.
- Seeder::run() — Method in class Seeder
Run the database seeds.
- Seeder::resolve() — Method in class Seeder
Resolve an instance of the given seeder class.
- EncryptionServiceProvider::register() — Method in class EncryptionServiceProvider
Register the service provider.
- Dispatcher::resolveSubscriber() — Method in class Dispatcher
Resolve the subscriber instance.
- EventServiceProvider::register() — Method in class EventServiceProvider
Register the service provider.
- ExceptionServiceProvider::register() — Method in class ExceptionServiceProvider
Register the service provider.
- ExceptionServiceProvider::registerDisplayers() — Method in class ExceptionServiceProvider
Register the exception displayers.
- ExceptionServiceProvider::registerHandler() — Method in class ExceptionServiceProvider
Register the exception handler instance.
- ExceptionServiceProvider::registerPlainDisplayer() — Method in class ExceptionServiceProvider
Register the plain exception displayer.
- ExceptionServiceProvider::registerDebugDisplayer() — Method in class ExceptionServiceProvider
Register the Whoops exception displayer.
- ExceptionServiceProvider::registerWhoops() — Method in class ExceptionServiceProvider
Register the Whoops error display service.
- ExceptionServiceProvider::registerWhoopsHandler() — Method in class ExceptionServiceProvider
Register the Whoops handler for the request.
- ExceptionServiceProvider::requestWantsJson() — Method in class ExceptionServiceProvider
Determine if the request warrants a JSON response.
- ExceptionServiceProvider::registerPrettyWhoopsHandler() — Method in class ExceptionServiceProvider
Register the "pretty" Whoops handler.
- $ Handler#responsePreparer — Property in class Handler
The response preparer implementation.
- Handler::register() — Method in class Handler
Register the exception / error handlers for the application.
- Handler::registerErrorHandler() — Method in class Handler
Register the PHP error handler.
- Handler::registerExceptionHandler() — Method in class Handler
Register the PHP exception handler.
- Handler::registerShutdownHandler() — Method in class Handler
Register the PHP shutdown handler.
- Handler::runningInConsole() — Method in class Handler
Determine if we are running in the console.
- $ SymfonyDisplayer#returnJson — Property in class SymfonyDisplayer
Indicates if JSON should be returned.
- $ WhoopsDisplayer#runningInConsole — Property in class WhoopsDisplayer
Indicates if the application is in a console environment.
- Filesystem::requireOnce() — Method in class Filesystem
Require the given file once.
- FilesystemServiceProvider::register() — Method in class FilesystemServiceProvider
Register the service provider.
- $ AliasLoader#registered — Property in class AliasLoader
Indicates if a loader has been registered.
- AliasLoader::register() — Method in class AliasLoader
Register the loader on the auto-loader stack.
- $ Application#requestClass — Property in class Application
The request class used by the application.
- Application::registerBaseBindings() — Method in class Application
Register the basic bindings into the container.
- Application::registerBaseServiceProviders() — Method in class Application
Register all of the base service providers.
- Application::registerExceptionProvider() — Method in class Application
Register the exception service provider.
- Application::registerRoutingProvider() — Method in class Application
Register the routing service provider.
- Application::registerEventProvider() — Method in class Application
Register the event service provider.
- Application::runningInConsole() — Method in class Application
Determine if we are running in the console.
- Application::runningUnitTests() — Method in class Application
Determine if we are running unit tests.
- Application::register() — Method in class Application
Register a service provider with the application.
- Application::resolveProviderClass() — Method in class Application
Resolve a service provider instance from the class name.
- Application::registerDeferredProvider() — Method in class Application
Register a deferred provider and service.
- Application::run() — Method in class Application
Run the application and send the response.
- Application::registerBaseMiddlewares() — Method in class Application
Register the default, but optional middlewares.
- Application::refreshRequest() — Method in class Application
Refresh the bound request instance in the container.
- Application::readyForResponses() — Method in class Application
Determine if provider is ready to return responses.
- Application::requestClass() — Method in class Application
Get or set the request class for the application.
- Application::registerCoreContainerAliases() — Method in class Application
Register the core class aliases in the container.
- OptimizeCommand::registerClassPreloaderCommand() — Method in class OptimizeCommand
Register the pre-compiler command instance with Artisan.
- RoutesCommand — Class in namespace Illuminate\Foundation\Console
- $ RoutesCommand#router — Property in class RoutesCommand
The router instance.
- $ RoutesCommand#routes — Property in class RoutesCommand
An array of all the registered routes.
- TinkerCommand::runBorisShell() — Method in class TinkerCommand
Run the Boris REPL with the current context.
- TinkerCommand::runPlainShell() — Method in class TinkerCommand
Run the plain Artisan tinker shell.
- ProviderRepository::registerLoadEvents() — Method in class ProviderRepository
Register the load events for the given provider.
- ArtisanServiceProvider::register() — Method in class ArtisanServiceProvider
Register the service provider.
- CommandCreatorServiceProvider::register() — Method in class CommandCreatorServiceProvider
Register the service provider.
- ComposerServiceProvider::register() — Method in class ComposerServiceProvider
Register the service provider.
- ConsoleSupportServiceProvider::register() — Method in class ConsoleSupportServiceProvider
Register the service provider.
- KeyGeneratorServiceProvider::register() — Method in class KeyGeneratorServiceProvider
Register the service provider.
- MaintenanceServiceProvider::register() — Method in class MaintenanceServiceProvider
Register the service provider.
- OptimizeServiceProvider::register() — Method in class OptimizeServiceProvider
Register the service provider.
- OptimizeServiceProvider::registerOptimizeCommand() — Method in class OptimizeServiceProvider
Register the optimize command.
- OptimizeServiceProvider::registerClearCompiledCommand() — Method in class OptimizeServiceProvider
Register the compiled file remover command.
- PublisherServiceProvider::register() — Method in class PublisherServiceProvider
Register the service provider.
- PublisherServiceProvider::registerAssetPublisher() — Method in class PublisherServiceProvider
Register the asset publisher service and command.
- PublisherServiceProvider::registerAssetPublishCommand() — Method in class PublisherServiceProvider
Register the asset publish console command.
- PublisherServiceProvider::registerConfigPublisher() — Method in class PublisherServiceProvider
Register the configuration publisher class and command.
- PublisherServiceProvider::registerConfigPublishCommand() — Method in class PublisherServiceProvider
Register the configuration publish console command.
- PublisherServiceProvider::registerViewPublisher() — Method in class PublisherServiceProvider
Register the view publisher class and command.
- PublisherServiceProvider::registerViewPublishCommand() — Method in class PublisherServiceProvider
Register the view publish console command.
- PublisherServiceProvider::registerMigrationPublisher() — Method in class PublisherServiceProvider
Register the migration publisher class and command.
- PublisherServiceProvider::registerMigratePublishCommand() — Method in class PublisherServiceProvider
Register the migration publisher command.
- RouteListServiceProvider — Class in namespace Illuminate\Foundation\Providers
- RouteListServiceProvider::register() — Method in class RouteListServiceProvider
Register the service provider.
- ServerServiceProvider::register() — Method in class ServerServiceProvider
Register the service provider.
- TinkerServiceProvider::register() — Method in class TinkerServiceProvider
Register the service provider.
- ApplicationTrait::refreshApplication() — Method in class ApplicationTrait
Refresh the application instance.
- ApplicationTrait::route() — Method in class ApplicationTrait
Call a named route and return the Response.
- $ BcryptHasher#rounds — Property in class BcryptHasher
Default crypt cost factor.
- HashServiceProvider::register() — Method in class HashServiceProvider
Register the service provider.
- $ FormBuilder#reserved — Property in class FormBuilder
The reserved form open attributes.
- FormBuilder::radio() — Method in class FormBuilder
Create a radio button input field.
- FormBuilder::reset() — Method in class FormBuilder
Create a HTML reset input element.
- HtmlServiceProvider::register() — Method in class HtmlServiceProvider
Register the service provider.
- HtmlServiceProvider::registerHtmlBuilder() — Method in class HtmlServiceProvider
Register the HTML builder instance.
- HtmlServiceProvider::registerFormBuilder() — Method in class HtmlServiceProvider
Register the form builder instance.
- RedirectResponse — Class in namespace Illuminate\Http
- $ RedirectResponse#request — Property in class RedirectResponse
The request instance.
- Request — Class in namespace Illuminate\Http
- Request::root() — Method in class Request
Get the root URL for the application.
- Request::retrieveItem() — Method in class Request
Retrieve a parameter item from a given source.
- Request::replace() — Method in class Request
Replace the input for the current request.
- Response — Class in namespace Illuminate\Http
- ResponseTrait — Class in namespace Illuminate\Http
- LogServiceProvider::register() — Method in class LogServiceProvider
Register the service provider.
- MailServiceProvider::register() — Method in class MailServiceProvider
Register the service provider.
- MailServiceProvider::registerSwiftMailer() — Method in class MailServiceProvider
Register the Swift Mailer instance.
- MailServiceProvider::registerSwiftTransport() — Method in class MailServiceProvider
Register the Swift Transport instance.
- MailServiceProvider::registerSmtpTransport() — Method in class MailServiceProvider
Register the SMTP Swift Transport instance.
- MailServiceProvider::registerSendmailTransport() — Method in class MailServiceProvider
Register the Sendmail Swift Transport instance.
- MailServiceProvider::registerMailTransport() — Method in class MailServiceProvider
Register the Mail Swift Transport instance.
- MailServiceProvider::registerMailgunTransport() — Method in class MailServiceProvider
Register the Mailgun Swift Transport instance.
- MailServiceProvider::registerMandrillTransport() — Method in class MailServiceProvider
Register the Mandrill Swift Transport instance.
- MailServiceProvider::registerLogTransport() — Method in class MailServiceProvider
Register the "Log" Swift Transport instance.
- Message::returnPath() — Method in class Message
Set the "return path" of the message.
- Message::replyTo() — Method in class Message
Add a reply to address to the message.
- LogTransport::registerPlugin() — Method in class LogTransport
- {@inheritdoc}
- MailgunTransport::registerPlugin() — Method in class MailgunTransport
- {@inheritdoc}
- MandrillTransport::registerPlugin() — Method in class MandrillTransport
- {@inheritdoc}
- $ Factory#request — Property in class Factory
The request instance.
- PaginationServiceProvider::register() — Method in class PaginationServiceProvider
Register the service provider.
- Presenter::render() — Method in class Presenter
Render the Pagination contents.
- Manager::registerConnectors() — Method in class Manager
Register the default connectors that the component ships with.
- $ IronConnector#request — Property in class IronConnector
The current request instance.
- RedisConnector — Class in namespace Illuminate\Queue\Connectors
- $ RedisConnector#redis — Property in class RedisConnector
The Redis database instance.
- RestartCommand — Class in namespace Illuminate\Queue\Console
- RetryCommand — Class in namespace Illuminate\Queue\Console
- RetryCommand::resetAttempts() — Method in class RetryCommand
Reset the payload attempts.
- WorkCommand::runWorker() — Method in class WorkCommand
Run the worker instance.
- FailConsoleServiceProvider::register() — Method in class FailConsoleServiceProvider
Register the service provider.
- $ DatabaseFailedJobProvider#resolver — Property in class DatabaseFailedJobProvider
The connection resolver implementation.
- $ IronQueue#request — Property in class IronQueue
The current request instance.
- IronQueue::recreate() — Method in class IronQueue
Push a raw payload onto the queue after encrypting the payload.
- BeanstalkdJob::release() — Method in class BeanstalkdJob
Release the job back into the queue.
- IronJob::release() — Method in class IronJob
Release the job back into the queue.
- IronJob::recreateJob() — Method in class IronJob
Release a pushed job back onto the queue.
- Job::release() — Method in class Job
Release the job back into the queue.
- Job::resolveAndFire() — Method in class Job
Resolve and fire the job handler method.
- Job::resolve() — Method in class Job
Resolve the given job handler.
- RedisJob — Class in namespace Illuminate\Queue\Jobs
- $ RedisJob#redis — Property in class RedisJob
The Redis queue instance.
- RedisJob::release() — Method in class RedisJob
Release the job back into the queue.
- SqsJob::release() — Method in class SqsJob
Release the job back into the queue.
- SyncJob::release() — Method in class SyncJob
Release the job back into the queue.
- Listener::runProcess() — Method in class Listener
Run the given process.
- QueueManager::resolve() — Method in class QueueManager
Resolve a queue connection.
- QueueServiceProvider::register() — Method in class QueueServiceProvider
Register the service provider.
- QueueServiceProvider::registerManager() — Method in class QueueServiceProvider
Register the queue manager.
- QueueServiceProvider::registerWorker() — Method in class QueueServiceProvider
Register the queue worker.
- QueueServiceProvider::registerWorkCommand() — Method in class QueueServiceProvider
Register the queue worker console command.
- QueueServiceProvider::registerListener() — Method in class QueueServiceProvider
Register the queue listener.
- QueueServiceProvider::registerListenCommand() — Method in class QueueServiceProvider
Register the queue listener console command.
- QueueServiceProvider::registerRestartCommand() — Method in class QueueServiceProvider
Register the queue restart console command.
- QueueServiceProvider::registerSubscriber() — Method in class QueueServiceProvider
Register the push queue subscribe command.
- QueueServiceProvider::registerConnectors() — Method in class QueueServiceProvider
Register the connectors on the queue manager.
- QueueServiceProvider::registerSyncConnector() — Method in class QueueServiceProvider
Register the Sync queue connector.
- QueueServiceProvider::registerBeanstalkdConnector() — Method in class QueueServiceProvider
Register the Beanstalkd queue connector.
- QueueServiceProvider::registerRedisConnector() — Method in class QueueServiceProvider
Register the Redis queue connector.
- QueueServiceProvider::registerSqsConnector() — Method in class QueueServiceProvider
Register the Amazon SQS queue connector.
- QueueServiceProvider::registerIronConnector() — Method in class QueueServiceProvider
Register the IronMQ queue connector.
- QueueServiceProvider::registerIronRequestBinder() — Method in class QueueServiceProvider
Register the request rebinding event for the Iron queue.
- QueueServiceProvider::registerFailedJobServices() — Method in class QueueServiceProvider
Register the failed job services.
- QueueServiceProvider::registerQueueClosure() — Method in class QueueServiceProvider
Register the Illuminate queued closure job.
- RedisQueue — Class in namespace Illuminate\Queue
- $ RedisQueue#redis — Property in class RedisQueue
The Redis database instance.
- RedisQueue::release() — Method in class RedisQueue
Release a reserved job back onto the queue.
- RedisQueue::removeExpiredJobs() — Method in class RedisQueue
Remove the expired jobs from a given queue.
- SyncQueue::resolveJob() — Method in class SyncQueue
Resolve a Sync job instance.
- Worker::runNextJobForDaemon() — Method in class Worker
Run the next job for the daemon worker.
- Worker::raiseFailedJobEvent() — Method in class Worker
Raise the failed queue job event.
- RedisServiceProvider — Class in namespace Illuminate\Redis
- RedisServiceProvider::register() — Method in class RedisServiceProvider
Register the service provider.
- Connection::run() — Method in class Connection
Run a set of commands against the connection.
- ConnectionInterface::run() — Method in class ConnectionInterface
Run a set of commands against the connection.
- GatewayInterface::run() — Method in class GatewayInterface
Run a command against the server (non-blocking).
- MultiConnection::run() — Method in class MultiConnection
Run a set of commands against the connection.
- RemoteManager — Class in namespace Illuminate\Remote
- RemoteManager::resolve() — Method in class RemoteManager
Resolve a remote connection instance.
- RemoteServiceProvider — Class in namespace Illuminate\Remote
- RemoteServiceProvider::register() — Method in class RemoteServiceProvider
Register the service provider.
- SecLibGateway::run() — Method in class SecLibGateway
Run a command against the server (non-blocking).
- SecLibGateway::readRsaKey() — Method in class SecLibGateway
Read the contents of the RSA key.
- Controller::registerClosureFilter() — Method in class Controller
Register an anonymous controller filter Closure.
- Controller::registerInstanceFilter() — Method in class Controller
Register a controller instance method as a filter.
- Controller::removeFilter() — Method in class Controller
Remove the given controller filter from the provided filter array.
- ControllerServiceProvider::register() — Method in class ControllerServiceProvider
Register the service provider.
- ControllerServiceProvider::registerGenerator() — Method in class ControllerServiceProvider
Register the controller generator command.
- ControllerGenerator::replaceNamespace() — Method in class ControllerGenerator
Replace the namespace on the controller.
- Redirector — Class in namespace Illuminate\Routing
- Redirector::refresh() — Method in class Redirector
Create a new redirect response to the current URI.
- Redirector::route() — Method in class Redirector
Create a new redirect response to a named route.
- Route — Class in namespace Illuminate\Routing
- Route::run() — Method in class Route
Run the route action and return the response.
- Route::replaceDefaults() — Method in class Route
Replace null parameters with their defaults.
- RouteCollection — Class in namespace Illuminate\Routing
- $ RouteCollection#routes — Property in class RouteCollection
An array of the routes keyed by method.
- RouteFiltererInterface — Class in namespace Illuminate\Routing
- Router — Class in namespace Illuminate\Routing
- $ Router#routes — Property in class Router
The route collection instance.
- $ Router#regexFilters — Property in class Router
The registered regular expression based filters.
- $ Router#resourceDefaults — Property in class Router
The default actions for a resourceful controller.
- Router::registerInspected() — Method in class Router
Register an inspected controller route.
- Router::resource() — Method in class Router
Route a resource to a controller.
- Router::routingToController() — Method in class Router
Determine if the action is routing to a controller.
- RoutingServiceProvider — Class in namespace Illuminate\Routing
- RoutingServiceProvider::register() — Method in class RoutingServiceProvider
Register the service provider.
- RoutingServiceProvider::registerRouter() — Method in class RoutingServiceProvider
Register the router instance.
- RoutingServiceProvider::registerUrlGenerator() — Method in class RoutingServiceProvider
Register the URL generator service.
- RoutingServiceProvider::registerRedirector() — Method in class RoutingServiceProvider
Register the Redirector service.
- $ UrlGenerator#routes — Property in class UrlGenerator
The route collection.
- $ UrlGenerator#request — Property in class UrlGenerator
The request instance.
- UrlGenerator::removeIndex() — Method in class UrlGenerator
Remove the index.php file from a path.
- UrlGenerator::route() — Method in class UrlGenerator
Get the URL to a named route.
- UrlGenerator::replaceRoot() — Method in class UrlGenerator
Replace the parameters on the root path.
- UrlGenerator::replaceRouteParameters() — Method in class UrlGenerator
Replace all of the wildcard parameters for a route path.
- UrlGenerator::replaceNamedParameters() — Method in class UrlGenerator
Replace all of the named parameters in the path.
- CacheBasedSessionHandler::read() — Method in class CacheBasedSessionHandler
- {@inheritDoc}
- CommandsServiceProvider::register() — Method in class CommandsServiceProvider
Register the service provider.
- $ CookieSessionHandler#request — Property in class CookieSessionHandler
The request instance.
- CookieSessionHandler::read() — Method in class CookieSessionHandler
- {@inheritDoc}
- DatabaseSessionHandler::read() — Method in class DatabaseSessionHandler
- {@inheritDoc}
- FileSessionHandler::read() — Method in class FileSessionHandler
- {@inheritDoc}
- $ Middleware#reject — Property in class Middleware
The callback to determine to use session arrays.
- SessionServiceProvider::register() — Method in class SessionServiceProvider
Register the service provider.
- SessionServiceProvider::registerSessionManager() — Method in class SessionServiceProvider
Register the session manager instance.
- SessionServiceProvider::registerSessionDriver() — Method in class SessionServiceProvider
Register the session driver instance.
- Store::readFromHandler() — Method in class Store
Read the session data from the handler.
- Store::regenerate() — Method in class Store
Generate a new session identifier.
- Store::reflash() — Method in class Store
Reflash all of the session flash data.
- Store::removeFromOldFlashData() — Method in class Store
Remove the given keys from the old flash data.
- Store::replace() — Method in class Store
- {@inheritdoc}
- Store::remove() — Method in class Store
- {@inheritdoc}
- Store::registerBag() — Method in class Store
- {@inheritdoc}
- Store::regenerateToken() — Method in class Store
Regenerate the CSRF token value.
- $ ClassLoader#registered — Property in class ClassLoader
Indicates if a ClassLoader has been registered.
- ClassLoader::register() — Method in class ClassLoader
Register the given class loader on the auto-loader stack.
- ClassLoader::removeDirectories() — Method in class ClassLoader
Remove directories from the class loader.
- Collection::random() — Method in class Collection
Get one or more items randomly from the collection.
- Collection::reduce() — Method in class Collection
Reduce the collection to a single value.
- Collection::reject() — Method in class Collection
Create a collection of all elements that do not pass a given truth test.
- Collection::reverse() — Method in class Collection
Reverse items order.
- RenderableInterface — Class in namespace Illuminate\Support\Contracts
- RenderableInterface::render() — Method in class RenderableInterface
Get the evaluated contents of the object.
- ResponsePreparerInterface — Class in namespace Illuminate\Support\Contracts
- ResponsePreparerInterface::readyForResponses() — Method in class ResponsePreparerInterface
Determine if provider is ready to return responses.
- $ Facade#resolvedInstance — Property in class Facade
The resolved object instances.
- Facade::resolveFacadeInstance() — Method in class Facade
Resolve the facade root instance from the container.
- Redirect — Class in namespace Illuminate\Support\Facades
- Redis — Class in namespace Illuminate\Support\Facades
- Request — Class in namespace Illuminate\Support\Facades
- Response — Class in namespace Illuminate\Support\Facades
- Route — Class in namespace Illuminate\Support\Facades
- ServiceProvider::register() — Method in class ServiceProvider
Register the service provider.
- Str::random() — Method in class Str
Generate a more truly "random" alpha-numeric string.
- TranslationServiceProvider::register() — Method in class TranslationServiceProvider
Register the service provider.
- TranslationServiceProvider::registerLoader() — Method in class TranslationServiceProvider
Register the translation line loader.
- $ Factory#replacers — Property in class Factory
All of the custom validator message replacers.
- $ Factory#resolver — Property in class Factory
The Validator resolver instance.
- Factory::resolve() — Method in class Factory
Resolve a new Validator instance.
- Factory::replacer() — Method in class Factory
Register a custom implicit validator message replacer.
- Factory::resolver() — Method in class Factory
Set the Validator instance resolver.
- ValidationServiceProvider::register() — Method in class ValidationServiceProvider
Register the service provider.
- ValidationServiceProvider::registerPresenceVerifier() — Method in class ValidationServiceProvider
Register the database presence verifier.
- $ Validator#rules — Property in class Validator
The rules to be applied to the data.
- $ Validator#replacers — Property in class Validator
All of the custom replacer extensions.
- Validator::replaceBetween() — Method in class Validator
Replace all place-holders for the between rule.
- Validator::replaceDigits() — Method in class Validator
Replace all place-holders for the digits rule.
- Validator::replaceDigitsBetween() — Method in class Validator
Replace all place-holders for the digits (between) rule.
- Validator::replaceSize() — Method in class Validator
Replace all place-holders for the size rule.
- Validator::replaceMin() — Method in class Validator
Replace all place-holders for the min rule.
- Validator::replaceMax() — Method in class Validator
Replace all place-holders for the max rule.
- Validator::replaceIn() — Method in class Validator
Replace all place-holders for the in rule.
- Validator::replaceNotIn() — Method in class Validator
Replace all place-holders for the not_in rule.
- Validator::replaceMimes() — Method in class Validator
Replace all place-holders for the mimes rule.
- Validator::replaceRequiredWith() — Method in class Validator
Replace all place-holders for the required_with rule.
- Validator::replaceRequiredWithout() — Method in class Validator
Replace all place-holders for the required_without rule.
- Validator::replaceRequiredWithoutAll() — Method in class Validator
Replace all place-holders for the required_without_all rule.
- Validator::replaceRequiredIf() — Method in class Validator
Replace all place-holders for the required_if rule.
- Validator::replaceSame() — Method in class Validator
Replace all place-holders for the same rule.
- Validator::replaceDifferent() — Method in class Validator
Replace all place-holders for the different rule.
- Validator::replaceDateFormat() — Method in class Validator
Replace all place-holders for the date_format rule.
- Validator::replaceBefore() — Method in class Validator
Replace all place-holders for the before rule.
- Validator::replaceAfter() — Method in class Validator
Replace all place-holders for the after rule.
- Validator::requireParameterCount() — Method in class Validator
Require a certain number of parameters to be present.
- $ EngineResolver#resolvers — Property in class EngineResolver
The array of engine resolvers.
- $ EngineResolver#resolved — Property in class EngineResolver
The resolved engine instances.
- EngineResolver::register() — Method in class EngineResolver
Register a new engine resolver.
- EngineResolver::resolve() — Method in class EngineResolver
Resolver an engine instance by name.
- $ Factory#renderCount — Property in class Factory
The number of active rendering operations.
- Factory::renderEach() — Method in class Factory
Get the rendered contents of a partial from a loop.
- View::render() — Method in class View
Get the evaluated contents of the object.
- View::renderContents() — Method in class View
Get the contents of the view instance.
- View::renderSections() — Method in class View
Get the sections of the rendered view.
- ViewServiceProvider::register() — Method in class ViewServiceProvider
Register the service provider.
- ViewServiceProvider::registerEngineResolver() — Method in class ViewServiceProvider
Register the engine resolver instance.
- ViewServiceProvider::registerPhpEngine() — Method in class ViewServiceProvider
Register the PHP engine implementation.
- ViewServiceProvider::registerBladeEngine() — Method in class ViewServiceProvider
Register the Blade engine implementation.
- ViewServiceProvider::registerViewFinder() — Method in class ViewServiceProvider
Register the view finder implementation.
- ViewServiceProvider::registerFactory() — Method in class ViewServiceProvider
Register the view environment.
- ViewServiceProvider::registerSessionBinder() — Method in class ViewServiceProvider
Register the session binder for the view environment.
- WorkbenchMakeCommand::runCreator() — Method in class WorkbenchMakeCommand
Run the package creator class for a given Package.
- WorkbenchServiceProvider::register() — Method in class WorkbenchServiceProvider
Register the service provider.
S
- AuthManager::setDefaultDriver() — Method in class AuthManager
Set the default authentication driver name.
- GenericUser::setRememberToken() — Method in class GenericUser
Set the token value for the "remember me" session.
- $ Guard#session — Property in class Guard
The session store used by the guard.
- Guard::setCookieJar() — Method in class Guard
Set the cookie creator instance used by the guard.
- Guard::setDispatcher() — Method in class Guard
Set the event dispatcher instance.
- Guard::setProvider() — Method in class Guard
Set the user provider used by the guard.
- Guard::setUser() — Method in class Guard
Set the current user of the application.
- Guard::setRequest() — Method in class Guard
Set the current request instance.
- PasswordBroker::sendReminder() — Method in class PasswordBroker
Send the password reminder e-mail.
- UserInterface::setRememberToken() — Method in class UserInterface
Set the token value for the "remember me" session.
- UserTrait::setRememberToken() — Method in class UserTrait
Set the token value for the "remember me" session.
- $ ArrayStore#storage — Property in class ArrayStore
The array of stored values.
- CacheManager::setPrefix() — Method in class CacheManager
Set the cache "prefix" value.
- CacheManager::setDefaultDriver() — Method in class CacheManager
Set the default cache driver name.
- $ NullStore#storage — Property in class NullStore
The array of stored values.
- RedisStore::setConnection() — Method in class RedisStore
Set the connection name to be used.
- $ Repository#store — Property in class Repository
The cache store implementation.
- Repository::sear() — Method in class Repository
Get an item from the cache, or store the default value forever.
- Repository::setDefaultCacheTime() — Method in class Repository
Set the default cache time in minutes.
- StoreInterface — Class in namespace Illuminate\Cache
- $ TagSet#store — Property in class TagSet
The cache store implementation.
- TaggableStore::section() — Method in class TaggableStore
Begin executing a new tags operation.
- $ TaggedCache#store — Property in class TaggedCache
The cache store implementation.
- TaggedCache::sear() — Method in class TaggedCache
Get an item from the cache, or store the default value forever.
- Repository::set() — Method in class Repository
Set a given configuration value.
- Repository::setLoader() — Method in class Repository
Set the loader implementation.
- Application::start() — Method in class Application
Create and boot a new Console application.
- Application::setExceptionHandler() — Method in class Application
Set the exception handler instance.
- Application::setLaravel() — Method in class Application
Set the Laravel application instance.
- Application::setAutoExit() — Method in class Application
Set whether the Console app should auto-exit when done.
- Command::specifyParameters() — Method in class Command
Specify the arguments and options on the command.
- Command::secret() — Method in class Command
Prompt the user for input but hide the answer from the console.
- Command::setLaravel() — Method in class Command
Set the Laravel application instance.
- Container::singleton() — Method in class Container
Register a shared binding in the container.
- Container::share() — Method in class Container
Wrap a Closure such that it is shared.
- CookieJar::setDefaultPathAndDomain() — Method in class CookieJar
Set the default path and domain for the jar.
- Manager::setupDefaultConfiguration() — Method in class Manager
Setup the default database configuration options.
- Manager::setupManager() — Method in class Manager
Build the database manager instance.
- Manager::schema() — Method in class Manager
Get a schema builder instance.
- Manager::setFetchMode() — Method in class Manager
Set the fetch mode for the database connections.
- Manager::setEventDispatcher() — Method in class Manager
Set the event dispatcher instance to be used by connections.
- Manager::setCacheManager() — Method in class Manager
Set the cache manager to be used by connections.
- $ Connection#schemaGrammar — Property in class Connection
The schema grammar implementation.
- Connection::selectOne() — Method in class Connection
Run a select statement and return a single result.
- Connection::selectFromWriteConnection() — Method in class Connection
Run a select statement against the database.
- Connection::select() — Method in class Connection
Run a select statement against the database.
- Connection::statement() — Method in class Connection
Execute an SQL statement and return the boolean result.
- Connection::setPdo() — Method in class Connection
Set the PDO connection.
- Connection::setReadPdo() — Method in class Connection
Set the PDO connection used for reading.
- Connection::setReconnector() — Method in class Connection
Set the reconnect instance on the connection.
- Connection::setQueryGrammar() — Method in class Connection
Set the query grammar used by the connection.
- Connection::setSchemaGrammar() — Method in class Connection
Set the schema grammar used by the connection.
- Connection::setPostProcessor() — Method in class Connection
Set the query post processor used by the connection.
- Connection::setEventDispatcher() — Method in class Connection
Set the event dispatcher instance on the connection.
- Connection::setPaginator() — Method in class Connection
Set the pagination environment instance.
- Connection::setCacheManager() — Method in class Connection
Set the cache manager instance on the connection.
- Connection::setFetchMode() — Method in class Connection
Set the default fetch mode for the connection.
- Connection::setDatabaseName() — Method in class Connection
Set the name of the connected database.
- Connection::setTablePrefix() — Method in class Connection
Set the table prefix in use by the connection.
- ConnectionInterface::selectOne() — Method in class ConnectionInterface
Run a select statement and return a single result.
- ConnectionInterface::select() — Method in class ConnectionInterface
Run a select statement against the database.
- ConnectionInterface::statement() — Method in class ConnectionInterface
Execute an SQL statement and return the boolean result.
- ConnectionResolver::setDefaultConnection() — Method in class ConnectionResolver
Set the default connection name.
- ConnectionResolverInterface::setDefaultConnection() — Method in class ConnectionResolverInterface
Set the default connection name.
- Connector::setDefaultOptions() — Method in class Connector
Set the default PDO connection options.
- SQLiteConnector — Class in namespace Illuminate\Database\Connectors
- SqlServerConnector — Class in namespace Illuminate\Database\Connectors
- SeedCommand — Class in namespace Illuminate\Database\Console
- DatabaseManager::setPdoForType() — Method in class DatabaseManager
Prepare the read write mode for database connection instance.
- DatabaseManager::setDefaultConnection() — Method in class DatabaseManager
Set the default connection name.
- Builder::simplePaginate() — Method in class Builder
Get a paginator only supporting simple next and previous links.
- Builder::setQuery() — Method in class Builder
Set the underlying query builder instance.
- Builder::setEagerLoads() — Method in class Builder
Set the relationships being eagerly loaded.
- Builder::setModel() — Method in class Builder
Set a model instance for the model being queried.
- $ Model#snakeAttributes — Property in class Model
Indicates whether attributes are snake cased on arrays.
- Model::saving() — Method in class Model
Register a saving model event with the dispatcher.
- Model::saved() — Method in class Model
Register a saved model event with the dispatcher.
- Model::setObservableEvents() — Method in class Model
Set the observable event names.
- Model::save() — Method in class Model
Save the model to the database.
- Model::setKeysForSaveQuery() — Method in class Model
Set the keys for a save update query.
- Model::setCreatedAt() — Method in class Model
Set the value of the "created at" attribute.
- Model::setUpdatedAt() — Method in class Model
Set the value of the "updated at" attribute.
- Model::setTable() — Method in class Model
Set the table associated with the model.
- Model::setKeyName() — Method in class Model
Set the primary key for the model.
- Model::setPerPage() — Method in class Model
Set the number of models to return per page.
- Model::setHidden() — Method in class Model
Set the hidden attributes for the model.
- Model::setVisible() — Method in class Model
Set the visible attributes for the model.
- Model::setAppends() — Method in class Model
Set the accessors to append to model arrays.
- Model::setUnguardState() — Method in class Model
Set "unguard" to a given state.
- Model::setTouchedRelations() — Method in class Model
Set the relationships that are touched on save.
- Model::setIncrementing() — Method in class Model
Set whether IDs are incrementing.
- Model::setAttribute() — Method in class Model
Set a given attribute on the model.
- Model::setRawAttributes() — Method in class Model
Set the array of model attributes. No checking is done.
- Model::syncOriginal() — Method in class Model
Sync the original attributes with the current.
- Model::syncOriginalAttribute() — Method in class Model
Sync a single original attribute with its current value.
- Model::setRelation() — Method in class Model
Set the specific relationship in the model.
- Model::setRelations() — Method in class Model
Set the entire relations array on the model.
- Model::setConnection() — Method in class Model
Set the connection associated with the model.
- Model::setConnectionResolver() — Method in class Model
Set the connection resolver instance.
- Model::setEventDispatcher() — Method in class Model
Set the event dispatcher instance.
- ModelNotFoundException::setModel() — Method in class ModelNotFoundException
Set the affected Eloquent model.
- BelongsToMany::setJoin() — Method in class BelongsToMany
Set the join clause for the relation query.
- BelongsToMany::setWhere() — Method in class BelongsToMany
Set the where clause for the relation query.
- BelongsToMany::save() — Method in class BelongsToMany
Save a new model and attach it to the parent model.
- BelongsToMany::saveMany() — Method in class BelongsToMany
Save an array of new models and attach them to the parent model.
- BelongsToMany::sync() — Method in class BelongsToMany
Sync the intermediate tables with a list of IDs or collection of models.
- BelongsToMany::setTimestampsOnAttach() — Method in class BelongsToMany
Set the creation and update timestamps on an attach record.
- $ HasManyThrough#secondKey — Property in class HasManyThrough
The far key on the relationship.
- HasManyThrough::setJoin() — Method in class HasManyThrough
Set the join clause on the query.
- HasOneOrMany::save() — Method in class HasOneOrMany
Attach a model instance to the parent model.
- HasOneOrMany::saveMany() — Method in class HasOneOrMany
Attach an array of models to the parent instance.
- MorphOneOrMany::save() — Method in class MorphOneOrMany
Attach a model instance to the parent model.
- MorphOneOrMany::setForeignAttributesForCreate() — Method in class MorphOneOrMany
Set the foreign ID and type for creating a related model.
- MorphPivot::setKeysForSaveQuery() — Method in class MorphPivot
Set the keys for a save update query.
- MorphPivot::setMorphType() — Method in class MorphPivot
Set the morph type for the pivot.
- MorphPivot::setMorphClass() — Method in class MorphPivot
Set the morph class for the pivot.
- MorphToMany::setWhere() — Method in class MorphToMany
Set the where clause for the relation query.
- Pivot::setKeysForSaveQuery() — Method in class Pivot
Set the keys for a save update query.
- Pivot::setPivotKeys() — Method in class Pivot
Set the key names for the pivot model instance.
- ScopeInterface — Class in namespace Illuminate\Database\Eloquent
- SoftDeletingScope — Class in namespace Illuminate\Database\Eloquent
- SoftDeletingTrait — Class in namespace Illuminate\Database\Eloquent
- Grammar::setTablePrefix() — Method in class Grammar
Set the grammar's table prefix.
- DatabaseMigrationRepository::setSource() — Method in class DatabaseMigrationRepository
Set the information source to gather data.
- MigrationRepositoryInterface::setSource() — Method in class MigrationRepositoryInterface
Set the information source to gather data.
- Migrator::setConnection() — Method in class Migrator
Set the default connection name.
- $ QueryException#sql — Property in class QueryException
The SQL for the query.
- Builder::select() — Method in class Builder
Set the columns to be selected.
- Builder::selectRaw() — Method in class Builder
Add a new "raw" select expression to the query.
- Builder::skip() — Method in class Builder
Alias to set the "offset" value of the query.
- Builder::sharedLock() — Method in class Builder
Share lock the selected rows in the table.
- Builder::simplePaginate() — Method in class Builder
Get a paginator only supporting simple next and previous links.
- Builder::sum() — Method in class Builder
Retrieve the sum of the values of a given column.
- Builder::setBindings() — Method in class Builder
Set the bindings on the query builder.
- $ Grammar#selectComponents — Property in class Grammar
The components that make up a select clause.
- $ MySqlGrammar#selectComponents — Property in class MySqlGrammar
The components that make up a select clause.
- SQLiteGrammar — Class in namespace Illuminate\Database\Query\Grammars
- SqlServerGrammar — Class in namespace Illuminate\Database\Query\Grammars
- SQLiteProcessor — Class in namespace Illuminate\Database\Query\Processors
- SqlServerProcessor — Class in namespace Illuminate\Database\Query\Processors
- SQLiteConnection — Class in namespace Illuminate\Database
- Blueprint::string() — Method in class Blueprint
Create a new string column on the table.
- Blueprint::smallInteger() — Method in class Blueprint
Create a new small integer column on the table.
- Blueprint::softDeletes() — Method in class Blueprint
Add a "deleted at" timestamp for the table.
- Builder::setConnection() — Method in class Builder
Set the database connection instance.
- Grammar::setRenamedColumns() — Method in class Grammar
Set the renamed columns on the table diff.
- $ MySqlGrammar#serials — Property in class MySqlGrammar
The possible column serials
- $ PostgresGrammar#serials — Property in class PostgresGrammar
The columns available as serials.
- SQLiteGrammar — Class in namespace Illuminate\Database\Schema\Grammars
- $ SQLiteGrammar#serials — Property in class SQLiteGrammar
The columns available as serials.
- SqlServerGrammar — Class in namespace Illuminate\Database\Schema\Grammars
- $ SqlServerGrammar#serials — Property in class SqlServerGrammar
The columns available as serials.
- SeedServiceProvider — Class in namespace Illuminate\Database
- Seeder — Class in namespace Illuminate\Database
- Seeder::setContainer() — Method in class Seeder
Set the IoC container instance.
- Seeder::setCommand() — Method in class Seeder
Set the console command instance.
- SqlServerConnection — Class in namespace Illuminate\Database
- Encrypter::stripPadding() — Method in class Encrypter
Remove the padding from the given value.
- Encrypter::setKey() — Method in class Encrypter
Set the encryption key.
- Encrypter::setCipher() — Method in class Encrypter
Set the encryption cipher.
- Encrypter::setMode() — Method in class Encrypter
Set the encryption mode.
- $ Dispatcher#sorted — Property in class Dispatcher
The sorted event listeners.
- Dispatcher::setupWildcardListen() — Method in class Dispatcher
Setup a wildcard listener callback.
- Dispatcher::subscribe() — Method in class Dispatcher
Register an event subscriber with the dispatcher.
- Dispatcher::sortListeners() — Method in class Dispatcher
Sort the listeners for a given event by priority.
- ExceptionServiceProvider::shouldReturnJson() — Method in class ExceptionServiceProvider
Determine if the error provider should return JSON.
- Handler::setDebug() — Method in class Handler
Set the debug level for the handler.
- SymfonyDisplayer — Class in namespace Illuminate\Exception
- $ SymfonyDisplayer#symfony — Property in class SymfonyDisplayer
The Symfony exception handler.
- Filesystem::size() — Method in class Filesystem
Get the file size of a given file.
- AliasLoader::setAliases() — Method in class AliasLoader
Set the registered aliases.
- AliasLoader::setRegistered() — Method in class AliasLoader
Set the "registered" state of the loader.
- AliasLoader::setInstance() — Method in class AliasLoader
Set the value of the singleton alias loader.
- $ Application#shutdownCallbacks — Property in class Application
The array of shutdown callbacks.
- $ Application#serviceProviders — Property in class Application
All of the registered service providers.
- Application::startExceptionHandling() — Method in class Application
Start the exception handling for the request.
- Application::shutdown() — Method in class Application
Register a "shutdown" callback.
- Application::setDeferredServices() — Method in class Application
Set the application's deferred services.
- Application::setRequestForConsoleEnvironment() — Method in class Application
Set the application request for the console environment.
- Application::setLocale() — Method in class Application
Set the current application locale.
- AssetPublisher::setPackagePath() — Method in class AssetPublisher
Set the default package path.
- Composer::setWorkingPath() — Method in class Composer
Set the working path used by the class.
- ConfigPublisher::setPackagePath() — Method in class ConfigPublisher
Set the default package path.
- ServeCommand — Class in namespace Illuminate\Foundation\Console
- TinkerCommand::setupBorisErrorHandling() — Method in class TinkerCommand
Setup the Boris exception handling.
- TinkerCommand::supportsBoris() — Method in class TinkerCommand
Determine if the current environment supports Boris.
- ProviderRepository::shouldRecompile() — Method in class ProviderRepository
Determine if the manifest should be compiled.
- ServerServiceProvider — Class in namespace Illuminate\Foundation\Providers
- ApplicationTrait::session() — Method in class ApplicationTrait
Set the session to the given array.
- ApplicationTrait::startSession() — Method in class ApplicationTrait
Start the session for the application.
- ApplicationTrait::seed() — Method in class ApplicationTrait
Seed a given database connection.
- TestCase::setUp() — Method in class TestCase
Setup the test environment.
- ViewPublisher::setPackagePath() — Method in class ViewPublisher
Set the default package path.
- BcryptHasher::setRounds() — Method in class BcryptHasher
Set the default crypt cost factor.
- $ FormBuilder#session — Property in class FormBuilder
The session store implementation.
- $ FormBuilder#spoofedMethods — Property in class FormBuilder
The form methods that should be spoofed, in uppercase.
- $ FormBuilder#skipValueTypes — Property in class FormBuilder
The types of inputs to not fill values on by default.
- FormBuilder::setModel() — Method in class FormBuilder
Set the model instance on the form builder.
- FormBuilder::setTextAreaSize() — Method in class FormBuilder
Set the text area size on the attributes.
- FormBuilder::setQuickTextAreaSize() — Method in class FormBuilder
Set the text area size using the quick "size" attribute.
- FormBuilder::select() — Method in class FormBuilder
Create a select box field.
- FormBuilder::selectRange() — Method in class FormBuilder
Create a select range field.
- FormBuilder::selectYear() — Method in class FormBuilder
Create a select year field.
- FormBuilder::selectMonth() — Method in class FormBuilder
Create a select month field.
- FormBuilder::submit() — Method in class FormBuilder
Create a submit button element.
- FormBuilder::setSessionStore() — Method in class FormBuilder
Set the session store implementation.
- HtmlBuilder::script() — Method in class HtmlBuilder
Generate a link to a JavaScript file.
- HtmlBuilder::style() — Method in class HtmlBuilder
Generate a link to a CSS file.
- HtmlBuilder::secureLink() — Method in class HtmlBuilder
Generate a HTTPS HTML link.
- JsonResponse::setData() — Method in class JsonResponse
- {@inheritdoc}
- JsonResponse::setJsonOptions() — Method in class JsonResponse
Set the JSON encoding options.
- $ RedirectResponse#session — Property in class RedirectResponse
The session store implementation.
- RedirectResponse::setRequest() — Method in class RedirectResponse
Set the request instance.
- RedirectResponse::setSession() — Method in class RedirectResponse
Set the session store implementation.
- $ Request#sessionStore — Property in class Request
The Illuminate session store implementation.
- Request::segment() — Method in class Request
Get a segment from the URI (1 based index).
- Request::segments() — Method in class Request
Get all of the segments for the request path.
- Request::secure() — Method in class Request
Determine if the request is over HTTPS.
- Request::server() — Method in class Request
Retrieve a server variable from the request.
- Request::session() — Method in class Request
Get the session associated with the request.
- Response::setContent() — Method in class Response
Set the content on the response.
- Response::shouldBeJson() — Method in class Response
Determine if the given content should be turned into JSON.
- Writer::setEventDispatcher() — Method in class Writer
Set the event dispatcher instance.
- MailServiceProvider::setMailerDependencies() — Method in class MailServiceProvider
Set a few dependencies on the mailer instance.
- $ Mailer#swift — Property in class Mailer
The Swift Mailer instance.
- Mailer::send() — Method in class Mailer
Send a new message using a view.
- Mailer::sendSwiftMessage() — Method in class Mailer
Send a Swift Message instance.
- Mailer::setSwiftMailer() — Method in class Mailer
Set the Swift Mailer instance.
- Mailer::setLogger() — Method in class Mailer
Set the log writer instance.
- Mailer::setQueue() — Method in class Mailer
Set the queue manager instance.
- Mailer::setContainer() — Method in class Mailer
Set the IoC container instance.
- $ Message#swift — Property in class Message
The Swift Message instance.
- Message::sender() — Method in class Message
Set the "sender" of the message.
- Message::subject() — Method in class Message
Set the subject of the message.
- LogTransport::start() — Method in class LogTransport
- {@inheritdoc}
- LogTransport::stop() — Method in class LogTransport
- {@inheritdoc}
- LogTransport::send() — Method in class LogTransport
- {@inheritdoc}
- MailgunTransport::start() — Method in class MailgunTransport
- {@inheritdoc}
- MailgunTransport::stop() — Method in class MailgunTransport
- {@inheritdoc}
- MailgunTransport::send() — Method in class MailgunTransport
- {@inheritdoc}
- MailgunTransport::setKey() — Method in class MailgunTransport
Set the API key being used by the transport.
- MailgunTransport::setDomain() — Method in class MailgunTransport
Set the domain being used by the transport.
- MandrillTransport::start() — Method in class MandrillTransport
- {@inheritdoc}
- MandrillTransport::stop() — Method in class MandrillTransport
- {@inheritdoc}
- MandrillTransport::send() — Method in class MandrillTransport
- {@inheritdoc}
- MandrillTransport::setKey() — Method in class MandrillTransport
Set the API key being used by the transport.
- Factory::setupPaginationEnvironment() — Method in class Factory
Setup the pagination environment.
- Factory::setCurrentPage() — Method in class Factory
Set the number of the current page.
- Factory::setBaseUrl() — Method in class Factory
Set the base URL in use by the paginator.
- Factory::setPageName() — Method in class Factory
Set the input page parameter name used by the paginator.
- Factory::setViewName() — Method in class Factory
Set the name of the pagination view.
- Factory::setLocale() — Method in class Factory
Set the locale of the paginator.
- Factory::setRequest() — Method in class Factory
Set the active request instance.
- Factory::setViewFactory() — Method in class Factory
Set the current view factory.
- Paginator::setupPaginationContext() — Method in class Paginator
Setup the pagination context (current and last page).
- Paginator::setItems() — Method in class Paginator
Set the items being paginated.
- Paginator::setBaseUrl() — Method in class Paginator
Set the base URL in use by the paginator.
- Presenter::setCurrentPage() — Method in class Presenter
Set the value of the current page.
- Presenter::setLastPage() — Method in class Presenter
Set the value of the last page.
- Manager::setupDefaultConfiguration() — Method in class Manager
Setup the default queue configuration options.
- Manager::setupManager() — Method in class Manager
Build the queue manager instance.
- SqsConnector — Class in namespace Illuminate\Queue\Connectors
- SyncConnector — Class in namespace Illuminate\Queue\Connectors
- ListenCommand::setListenerOptions() — Method in class ListenCommand
Set the options on the queue listener.
- SubscribeCommand — Class in namespace Illuminate\Queue\Console
- $ IronQueue#shouldEncrypt — Property in class IronQueue
Indicates if the messages should be encrypted.
- IronQueue::setRequest() — Method in class IronQueue
Set the request instance.
- SqsJob — Class in namespace Illuminate\Queue\Jobs
- $ SqsJob#sqs — Property in class SqsJob
The Amazon SQS client instance.
- SyncJob — Class in namespace Illuminate\Queue\Jobs
- $ Listener#sleep — Property in class Listener
The amount of seconds to wait before polling the queue.
- Listener::stop() — Method in class Listener
Stop listening and bail out of the script.
- Listener::setOutputHandler() — Method in class Listener
Set the output handler callback.
- Listener::setEnvironment() — Method in class Listener
Set the current environment.
- Listener::setSleep() — Method in class Listener
Set the amount of seconds to wait before polling the queue.
- Listener::setMaxTries() — Method in class Listener
Set the amount of times to try a job before logging it failed.
- Queue::setMeta() — Method in class Queue
Set additional meta on a payload string.
- Queue::setContainer() — Method in class Queue
Set the IoC container instance.
- Queue::setEncrypter() — Method in class Queue
Set the encrypter instance.
- QueueManager::stopping() — Method in class QueueManager
Register an event listener for the daemon queue stopping.
- QueueManager::setDefaultDriver() — Method in class QueueManager
Set the name of the default queue connection.
- RedisQueue::setExpire() — Method in class RedisQueue
Set the expiration time in seconds.
- SqsQueue — Class in namespace Illuminate\Queue
- $ SqsQueue#sqs — Property in class SqsQueue
The Amazon SQS instance.
- SyncQueue — Class in namespace Illuminate\Queue
- Worker::stop() — Method in class Worker
Stop listening and bail out of the script.
- Worker::sleep() — Method in class Worker
Sleep the script for a given number of seconds.
- Worker::setDaemonExceptionHandler() — Method in class Worker
Set the exception handler to use in Daemon mode.
- Worker::setCache() — Method in class Worker
Set the cache repository implementation.
- Worker::setManager() — Method in class Worker
Set the queue manager instance.
- Connection::status() — Method in class Connection
Get the exit status of the last command.
- Connection::setOutput() — Method in class Connection
Set the output implementation.
- GatewayInterface::status() — Method in class GatewayInterface
Get the exit status of the last command.
- RemoteManager::setOutput() — Method in class RemoteManager
Set the output implementation on the connection.
- RemoteManager::setDefaultConnection() — Method in class RemoteManager
Set the default connection name.
- SecLibGateway — Class in namespace Illuminate\Remote
- SecLibGateway::setHostAndPort() — Method in class SecLibGateway
Set the host and port from a full host string.
- SecLibGateway::status() — Method in class SecLibGateway
Get the exit status of the last command.
- Controller::setFilterer() — Method in class Controller
Set the route filterer implementation.
- Controller::setupLayout() — Method in class Controller
Create the layout used by the controller.
- SchemeValidator — Class in namespace Illuminate\Routing\Matching
- $ Redirector#session — Property in class Redirector
The session store instance.
- Redirector::secure() — Method in class Redirector
Create a new redirect response to the given HTTPS path.
- Redirector::setSession() — Method in class Redirector
Set the active session store.
- Route::setParameter() — Method in class Route
Set a parameter to the given value.
- Route::secure() — Method in class Route
Determine if the route only responds to HTTPS requests.
- Route::setUri() — Method in class Route
Set the URI that the route responds to.
- Route::setAction() — Method in class Route
Set the action array for the route.
- Router::substituteBindings() — Method in class Router
Substitute the route bindings onto the route.
- Router::setControllerDispatcher() — Method in class Router
Set the controller dispatcher instance.
- UrlGenerator::secure() — Method in class UrlGenerator
Generate a secure, absolute URL to the given path.
- UrlGenerator::secureAsset() — Method in class UrlGenerator
Generate a URL to a secure asset.
- UrlGenerator::setRequest() — Method in class UrlGenerator
Set the current request instance.
- SessionTableCommand — Class in namespace Illuminate\Session\Console
- CookieSessionHandler::setRequest() — Method in class CookieSessionHandler
Set the request instance.
- DatabaseSessionHandler::setExists() — Method in class DatabaseSessionHandler
Set the existence state for the session.
- ExistenceAwareInterface::setExists() — Method in class ExistenceAwareInterface
Set the existence state for the session.
- Middleware::startSession() — Method in class Middleware
Start the session for the given request.
- Middleware::sessionConfigured() — Method in class Middleware
Determine if a session driver has been configured.
- Middleware::sessionIsPersistent() — Method in class Middleware
Determine if the configured session driver is persistent.
- SessionInterface — Class in namespace Illuminate\Session
- SessionInterface::setRequestOnHandler() — Method in class SessionInterface
Set the request on the handler instance.
- SessionManager — Class in namespace Illuminate\Session
- SessionManager::setDefaultDriver() — Method in class SessionManager
Set the default session driver name.
- SessionServiceProvider — Class in namespace Illuminate\Session
- SessionServiceProvider::setupDefaultDriver() — Method in class SessionServiceProvider
Setup the default session driver for the application.
- Store — Class in namespace Illuminate\Session
- $ Store#started — Property in class Store
Session store started status.
- Store::start() — Method in class Store
- {@inheritdoc}
- Store::setId() — Method in class Store
- {@inheritdoc}
- Store::setName() — Method in class Store
- {@inheritdoc}
- Store::save() — Method in class Store
- {@inheritdoc}
- Store::set() — Method in class Store
- {@inheritdoc}
- Store::setExists() — Method in class Store
Set the existence of the session on the handler if applicable.
- Store::setRequestOnHandler() — Method in class Store
Set the request on the handler instance.
- Arr::set() — Method in class Arr
Set an array item to a given value using "dot" notation.
- Arr::sort() — Method in class Arr
Sort the array using the given Closure.
- Collection::search() — Method in class Collection
Search the collection for a given value and return the corresponding key if successful.
- Collection::shift() — Method in class Collection
Get and remove the first item from the collection.
- Collection::shuffle() — Method in class Collection
Shuffle the items in the collection.
- Collection::slice() — Method in class Collection
Slice the underlying collection array.
- Collection::sort() — Method in class Collection
Sort through each item with a callback.
- Collection::sortBy() — Method in class Collection
Sort the collection using the given Closure.
- Collection::sortByDesc() — Method in class Collection
Sort the collection in descending order using the given Closure.
- Collection::splice() — Method in class Collection
Splice portion of the underlying collection array.
- Collection::sum() — Method in class Collection
Get the sum of the given values.
- Facade::swap() — Method in class Facade
Hotswap the underlying instance behind the facade.
- Facade::shouldReceive() — Method in class Facade
Initiate a mock expectation on the facade.
- Facade::setFacadeApplication() — Method in class Facade
Set the application instance.
- Response::stream() — Method in class Response
Return a new streamed response from the application.
- SSH — Class in namespace Illuminate\Support\Facades
- Schema — Class in namespace Illuminate\Support\Facades
- Session — Class in namespace Illuminate\Support\Facades
- MessageBag::setFormat() — Method in class MessageBag
Set the default message format.
- NamespacedItemResolver::setParsedKey() — Method in class NamespacedItemResolver
Set the parsed value of a key.
- $ Pluralizer#singular — Property in class Pluralizer
Singular word form rules.
- $ Pluralizer#singularCache — Property in class Pluralizer
The cached copies of the singular inflections.
- Pluralizer::singular() — Method in class Pluralizer
Get the singular form of the given word.
- SerializableClosure — Class in namespace Illuminate\Support
Extends SuperClosure for backwards compatibility.
- ServiceProvider — Class in namespace Illuminate\Support
- Str — Class in namespace Illuminate\Support
- $ Str#snakeCache — Property in class Str
The cache of snake-cased words.
- $ Str#studlyCache — Property in class Str
The cache of studly-cased words.
- Str::singular() — Method in class Str
Get the singular form of an English word.
- Str::slug() — Method in class Str
Generate a URL friendly "slug" from a given string.
- Str::snake() — Method in class Str
Convert a string to snake case.
- Str::startsWith() — Method in class Str
Determine if a given string starts with a given substring.
- Str::studly() — Method in class Str
Convert a value to studly caps case.
- CapsuleManagerTrait::setupContainer() — Method in class CapsuleManagerTrait
Setup the IoC container instance.
- CapsuleManagerTrait::setAsGlobal() — Method in class CapsuleManagerTrait
Make this capsule instance available globally.
- CapsuleManagerTrait::setContainer() — Method in class CapsuleManagerTrait
Set the IoC container instance.
- Translator::sortReplacements() — Method in class Translator
Sort the replacements array.
- Translator::setSelector() — Method in class Translator
Set the message selector instance.
- Translator::setLocale() — Method in class Translator
Set the default locale.
- Translator::setFallback() — Method in class Translator
Set the fallback locale being used.
- DatabasePresenceVerifier::setConnection() — Method in class DatabasePresenceVerifier
Set the connection to be used.
- Factory::setPresenceVerifier() — Method in class Factory
Set the Presence Verifier implementation.
- $ Validator#sizeRules — Property in class Validator
The size related validation rules.
- Validator::sometimes() — Method in class Validator
Add conditions to a given field based on a Closure.
- Validator::setData() — Method in class Validator
Set the data under validation.
- Validator::setRules() — Method in class Validator
Set the validation rules.
- Validator::setAttributeNames() — Method in class Validator
Set the custom attributes on the validator.
- Validator::setValueNames() — Method in class Validator
Set the custom values on the validator.
- Validator::setFiles() — Method in class Validator
Set the files under validation.
- Validator::setPresenceVerifier() — Method in class Validator
Set the Presence Verifier implementation.
- Validator::setTranslator() — Method in class Validator
Set the Translator implementation.
- Validator::setCustomMessages() — Method in class Validator
Set the custom messages for the validator
- Validator::setFallbackMessages() — Method in class Validator
Set the fallback messages for the validator.
- Validator::setContainer() — Method in class Validator
Set the IoC container instance.
- BladeCompiler::setPath() — Method in class BladeCompiler
Set the path currently being compiled.
- BladeCompiler::setContentTags() — Method in class BladeCompiler
Sets the content tags used for the compiler.
- BladeCompiler::setEscapedContentTags() — Method in class BladeCompiler
Sets the escaped content tags used for the compiler.
- $ Factory#shared — Property in class Factory
Data that should be available to all templates.
- $ Factory#sections — Property in class Factory
All of the finished, captured sections.
- $ Factory#sectionStack — Property in class Factory
The stack of in-progress sections.
- Factory::share() — Method in class Factory
Add a piece of shared data to the environment.
- Factory::startSection() — Method in class Factory
Start injecting content into a section.
- Factory::stopSection() — Method in class Factory
Stop injecting content into a section.
- Factory::setFinder() — Method in class Factory
Set the view finder instance.
- Factory::setDispatcher() — Method in class Factory
Set the event dispatcher instance.
- Factory::setContainer() — Method in class Factory
Set the IoC container instance.
- Factory::shared() — Method in class Factory
Get an item from the shared data.
- View::setPath() — Method in class View
Set the path to the view.
- ViewServiceProvider::sessionHasErrors() — Method in class ViewServiceProvider
Determine if the application session has errors.
- Starter — Class in namespace Illuminate\Workbench
- Starter::start() — Method in class Starter
Load the workbench vendor auto-load files.
T
- $ DatabaseUserProvider#table — Property in class DatabaseUserProvider
The table containing the users.
- $ Guard#tokenRetrievalAttempted — Property in class Guard
Indicates if a token user retrieval has been attempted.
- $ DatabaseReminderRepository#table — Property in class DatabaseReminderRepository
The reminder database table.
- $ DatabaseStore#table — Property in class DatabaseStore
The name of the cache table.
- DatabaseStore::table() — Method in class DatabaseStore
Get a query builder for the cache table.
- RedisStore::tags() — Method in class RedisStore
Begin executing a new tags operation.
- TagSet — Class in namespace Illuminate\Cache
- TagSet::tagId() — Method in class TagSet
Get the unique tag identifier for a given tag.
- TagSet::tagIds() — Method in class TagSet
Get an array of tag identifiers for all of the tags in the set.
- TagSet::tagKey() — Method in class TagSet
Get the tag identifier key for a given tag.
- TaggableStore — Class in namespace Illuminate\Cache
- TaggableStore::tags() — Method in class TaggableStore
Begin executing a new tags operation.
- TaggedCache — Class in namespace Illuminate\Cache
- $ TaggedCache#tags — Property in class TaggedCache
The tag set instance.
- TaggedCache::taggedItemKey() — Method in class TaggedCache
Get a fully qualified key for a tagged item.
- Command::table() — Method in class Command
Format input to textual table
- Manager::table() — Method in class Manager
Get a fluent query builder instance.
- $ Connection#transactions — Property in class Connection
The number of active transactions.
- $ Connection#tablePrefix — Property in class Connection
The table prefix for the connection.
- Connection::table() — Method in class Connection
Begin a fluent query against a database table.
- Connection::transaction() — Method in class Connection
Execute a Closure within a transaction.
- Connection::transactionLevel() — Method in class Connection
Get the number of active transactions.
- Connection::tryAgainIfCausedByLostConnection() — Method in class Connection
Handle a query exception that occurred during query execution.
- ConnectionInterface::table() — Method in class ConnectionInterface
Begin a fluent query against a database table.
- ConnectionInterface::transaction() — Method in class ConnectionInterface
Execute a Closure within a transaction.
- ConnectionInterface::transactionLevel() — Method in class ConnectionInterface
Get the number of active transactions.
- Collection::toBase() — Method in class Collection
Get a base Support collection instance from this collection.
- $ Model#table — Property in class Model
The table associated with the model.
- $ Model#timestamps — Property in class Model
Indicates if the model should be timestamped.
- $ Model#touches — Property in class Model
The relationships that should be touched on save.
- Model::touchOwners() — Method in class Model
Touch the owning relations of the model.
- Model::touches() — Method in class Model
Determine if the model touches a given relation.
- Model::touch() — Method in class Model
Update the model's update timestamp.
- Model::totallyGuarded() — Method in class Model
Determine if the model is totally guarded.
- Model::toJson() — Method in class Model
Convert the object to its JSON representation.
- Model::toArray() — Method in class Model
Get the instance as an array.
- $ BelongsToMany#table — Property in class BelongsToMany
The intermediate table for the relation.
- BelongsToMany::touch() — Method in class BelongsToMany
Touch all of the related models for the relationship.
- BelongsToMany::touchIfTouching() — Method in class BelongsToMany
If we're touching the parent model, touch.
- BelongsToMany::touchingParent() — Method in class BelongsToMany
Determine if we should touch the parent on sync.
- Relation::touch() — Method in class Relation
Touch all of the related models for the relationship.
- SoftDeletingTrait::trashed() — Method in class SoftDeletingTrait
Determine if the model instance has been soft-deleted.
- $ Grammar#tablePrefix — Property in class Grammar
The grammar table prefix.
- $ DatabaseMigrationRepository#table — Property in class DatabaseMigrationRepository
The name of the migration table.
- DatabaseMigrationRepository::table() — Method in class DatabaseMigrationRepository
Get a query builder for the migration table.
- Builder::take() — Method in class Builder
Alias to set the "limit" value of the query.
- Builder::toSql() — Method in class Builder
Get the SQL representation of the query.
- Builder::truncate() — Method in class Builder
Run a truncate statement on the table.
- $ JoinClause#type — Property in class JoinClause
The type of join being performed.
- $ JoinClause#table — Property in class JoinClause
The table the join clause is joining to.
- $ Blueprint#table — Property in class Blueprint
The table the blueprint describes.
- Blueprint::toSql() — Method in class Blueprint
Get the raw SQL statements for the blueprint.
- Blueprint::text() — Method in class Blueprint
Create a new text column on the table.
- Blueprint::tinyInteger() — Method in class Blueprint
Create a new tiny integer column on the table.
- Blueprint::time() — Method in class Blueprint
Create a new time column on the table.
- Blueprint::timestamp() — Method in class Blueprint
Create a new timestamp column on the table.
- Blueprint::timestamps() — Method in class Blueprint
Add creation and update timestamps to the table.
- Builder::table() — Method in class Builder
Modify a table on the schema.
- MySqlGrammar::typeChar() — Method in class MySqlGrammar
Create the column definition for a char type.
- MySqlGrammar::typeString() — Method in class MySqlGrammar
Create the column definition for a string type.
- MySqlGrammar::typeText() — Method in class MySqlGrammar
Create the column definition for a text type.
- MySqlGrammar::typeMediumText() — Method in class MySqlGrammar
Create the column definition for a medium text type.
- MySqlGrammar::typeLongText() — Method in class MySqlGrammar
Create the column definition for a long text type.
- MySqlGrammar::typeBigInteger() — Method in class MySqlGrammar
Create the column definition for a big integer type.
- MySqlGrammar::typeInteger() — Method in class MySqlGrammar
Create the column definition for a integer type.
- MySqlGrammar::typeMediumInteger() — Method in class MySqlGrammar
Create the column definition for a medium integer type.
- MySqlGrammar::typeTinyInteger() — Method in class MySqlGrammar
Create the column definition for a tiny integer type.
- MySqlGrammar::typeSmallInteger() — Method in class MySqlGrammar
Create the column definition for a small integer type.
- MySqlGrammar::typeFloat() — Method in class MySqlGrammar
Create the column definition for a float type.
- MySqlGrammar::typeDouble() — Method in class MySqlGrammar
Create the column definition for a double type.
- MySqlGrammar::typeDecimal() — Method in class MySqlGrammar
Create the column definition for a decimal type.
- MySqlGrammar::typeBoolean() — Method in class MySqlGrammar
Create the column definition for a boolean type.
- MySqlGrammar::typeEnum() — Method in class MySqlGrammar
Create the column definition for an enum type.
- MySqlGrammar::typeDate() — Method in class MySqlGrammar
Create the column definition for a date type.
- MySqlGrammar::typeDateTime() — Method in class MySqlGrammar
Create the column definition for a date-time type.
- MySqlGrammar::typeTime() — Method in class MySqlGrammar
Create the column definition for a time type.
- MySqlGrammar::typeTimestamp() — Method in class MySqlGrammar
Create the column definition for a timestamp type.
- MySqlGrammar::typeBinary() — Method in class MySqlGrammar
Create the column definition for a binary type.
- PostgresGrammar::typeChar() — Method in class PostgresGrammar
Create the column definition for a char type.
- PostgresGrammar::typeString() — Method in class PostgresGrammar
Create the column definition for a string type.
- PostgresGrammar::typeText() — Method in class PostgresGrammar
Create the column definition for a text type.
- PostgresGrammar::typeMediumText() — Method in class PostgresGrammar
Create the column definition for a medium text type.
- PostgresGrammar::typeLongText() — Method in class PostgresGrammar
Create the column definition for a long text type.
- PostgresGrammar::typeInteger() — Method in class PostgresGrammar
Create the column definition for a integer type.
- PostgresGrammar::typeBigInteger() — Method in class PostgresGrammar
Create the column definition for a big integer type.
- PostgresGrammar::typeMediumInteger() — Method in class PostgresGrammar
Create the column definition for a medium integer type.
- PostgresGrammar::typeTinyInteger() — Method in class PostgresGrammar
Create the column definition for a tiny integer type.
- PostgresGrammar::typeSmallInteger() — Method in class PostgresGrammar
Create the column definition for a small integer type.
- PostgresGrammar::typeFloat() — Method in class PostgresGrammar
Create the column definition for a float type.
- PostgresGrammar::typeDouble() — Method in class PostgresGrammar
Create the column definition for a double type.
- PostgresGrammar::typeDecimal() — Method in class PostgresGrammar
Create the column definition for a decimal type.
- PostgresGrammar::typeBoolean() — Method in class PostgresGrammar
Create the column definition for a boolean type.
- PostgresGrammar::typeEnum() — Method in class PostgresGrammar
Create the column definition for an enum type.
- PostgresGrammar::typeDate() — Method in class PostgresGrammar
Create the column definition for a date type.
- PostgresGrammar::typeDateTime() — Method in class PostgresGrammar
Create the column definition for a date-time type.
- PostgresGrammar::typeTime() — Method in class PostgresGrammar
Create the column definition for a time type.
- PostgresGrammar::typeTimestamp() — Method in class PostgresGrammar
Create the column definition for a timestamp type.
- PostgresGrammar::typeBinary() — Method in class PostgresGrammar
Create the column definition for a binary type.
- SQLiteGrammar::typeChar() — Method in class SQLiteGrammar
Create the column definition for a char type.
- SQLiteGrammar::typeString() — Method in class SQLiteGrammar
Create the column definition for a string type.
- SQLiteGrammar::typeText() — Method in class SQLiteGrammar
Create the column definition for a text type.
- SQLiteGrammar::typeMediumText() — Method in class SQLiteGrammar
Create the column definition for a medium text type.
- SQLiteGrammar::typeLongText() — Method in class SQLiteGrammar
Create the column definition for a long text type.
- SQLiteGrammar::typeInteger() — Method in class SQLiteGrammar
Create the column definition for a integer type.
- SQLiteGrammar::typeBigInteger() — Method in class SQLiteGrammar
Create the column definition for a big integer type.
- SQLiteGrammar::typeMediumInteger() — Method in class SQLiteGrammar
Create the column definition for a medium integer type.
- SQLiteGrammar::typeTinyInteger() — Method in class SQLiteGrammar
Create the column definition for a tiny integer type.
- SQLiteGrammar::typeSmallInteger() — Method in class SQLiteGrammar
Create the column definition for a small integer type.
- SQLiteGrammar::typeFloat() — Method in class SQLiteGrammar
Create the column definition for a float type.
- SQLiteGrammar::typeDouble() — Method in class SQLiteGrammar
Create the column definition for a double type.
- SQLiteGrammar::typeDecimal() — Method in class SQLiteGrammar
Create the column definition for a decimal type.
- SQLiteGrammar::typeBoolean() — Method in class SQLiteGrammar
Create the column definition for a boolean type.
- SQLiteGrammar::typeEnum() — Method in class SQLiteGrammar
Create the column definition for an enum type.
- SQLiteGrammar::typeDate() — Method in class SQLiteGrammar
Create the column definition for a date type.
- SQLiteGrammar::typeDateTime() — Method in class SQLiteGrammar
Create the column definition for a date-time type.
- SQLiteGrammar::typeTime() — Method in class SQLiteGrammar
Create the column definition for a time type.
- SQLiteGrammar::typeTimestamp() — Method in class SQLiteGrammar
Create the column definition for a timestamp type.
- SQLiteGrammar::typeBinary() — Method in class SQLiteGrammar
Create the column definition for a binary type.
- SqlServerGrammar::typeChar() — Method in class SqlServerGrammar
Create the column definition for a char type.
- SqlServerGrammar::typeString() — Method in class SqlServerGrammar
Create the column definition for a string type.
- SqlServerGrammar::typeText() — Method in class SqlServerGrammar
Create the column definition for a text type.
- SqlServerGrammar::typeMediumText() — Method in class SqlServerGrammar
Create the column definition for a medium text type.
- SqlServerGrammar::typeLongText() — Method in class SqlServerGrammar
Create the column definition for a long text type.
- SqlServerGrammar::typeInteger() — Method in class SqlServerGrammar
Create the column definition for a integer type.
- SqlServerGrammar::typeBigInteger() — Method in class SqlServerGrammar
Create the column definition for a big integer type.
- SqlServerGrammar::typeMediumInteger() — Method in class SqlServerGrammar
Create the column definition for a medium integer type.
- SqlServerGrammar::typeTinyInteger() — Method in class SqlServerGrammar
Create the column definition for a tiny integer type.
- SqlServerGrammar::typeSmallInteger() — Method in class SqlServerGrammar
Create the column definition for a small integer type.
- SqlServerGrammar::typeFloat() — Method in class SqlServerGrammar
Create the column definition for a float type.
- SqlServerGrammar::typeDouble() — Method in class SqlServerGrammar
Create the column definition for a double type.
- SqlServerGrammar::typeDecimal() — Method in class SqlServerGrammar
Create the column definition for a decimal type.
- SqlServerGrammar::typeBoolean() — Method in class SqlServerGrammar
Create the column definition for a boolean type.
- SqlServerGrammar::typeEnum() — Method in class SqlServerGrammar
Create the column definition for an enum type.
- SqlServerGrammar::typeDate() — Method in class SqlServerGrammar
Create the column definition for a date type.
- SqlServerGrammar::typeDateTime() — Method in class SqlServerGrammar
Create the column definition for a date-time type.
- SqlServerGrammar::typeTime() — Method in class SqlServerGrammar
Create the column definition for a time type.
- SqlServerGrammar::typeTimestamp() — Method in class SqlServerGrammar
Create the column definition for a timestamp type.
- SqlServerGrammar::typeBinary() — Method in class SqlServerGrammar
Create the column definition for a binary type.
- SqlServerConnection::transaction() — Method in class SqlServerConnection
Execute a Closure within a transaction.
- Filesystem::type() — Method in class Filesystem
Get the file type of a given file.
- Application::terminate() — Method in class Application
Call the "finish" and "shutdown" callbacks assigned to the application.
- TailCommand — Class in namespace Illuminate\Foundation\Console
- TailCommand::tailLogFile() — Method in class TailCommand
Tail the given log file for the connection.
- TailCommand::tailLocalLogs() — Method in class TailCommand
Tail a local log file for the application.
- TailCommand::tailRemoteLogs() — Method in class TailCommand
Tail a remote log file at the given path and connection.
- TinkerCommand — Class in namespace Illuminate\Foundation\Console
- TinkerServiceProvider — Class in namespace Illuminate\Foundation\Providers
- TestCase — Class in namespace Illuminate\Foundation\Testing
- FormBuilder::token() — Method in class FormBuilder
Generate a hidden field with the current CSRF token.
- FormBuilder::text() — Method in class FormBuilder
Create a text input field.
- FormBuilder::textarea() — Method in class FormBuilder
Create a textarea input field.
- FormBuilder::transformKey() — Method in class FormBuilder
Transform key from array to dot syntax.
- Message::to() — Method in class Message
Add a recipient to the message.
- $ Factory#trans — Property in class Factory
The translator implementation.
- $ Paginator#total — Property in class Paginator
The total number of items.
- $ Paginator#to — Property in class Paginator
The number of the last item in this range.
- Paginator::toArray() — Method in class Paginator
Get the instance as an array.
- Paginator::toJson() — Method in class Paginator
Convert the object to its JSON representation.
- $ BeanstalkdQueue#timeToRun — Property in class BeanstalkdQueue
The "time to run" for all pushed jobs.
- $ DatabaseFailedJobProvider#table — Property in class DatabaseFailedJobProvider
The database table.
- $ Connection#tasks — Property in class Connection
All of the defined tasks.
- Connection::task() — Method in class Connection
Run a task against the connection.
- ConnectionInterface::task() — Method in class ConnectionInterface
Run a task against the connection.
- MultiConnection::task() — Method in class MultiConnection
Run a task against the connection.
- Redirector::to() — Method in class Redirector
Create a new redirect response to the given path.
- UrlGenerator::to() — Method in class UrlGenerator
Generate a absolute URL to the given path.
- UrlGenerator::toRoute() — Method in class UrlGenerator
Get the URL for a given route instance.
- UrlGenerator::trimUrl() — Method in class UrlGenerator
Format the given URL segments into a single URL.
- $ DatabaseSessionHandler#table — Property in class DatabaseSessionHandler
The name of the session table.
- Store::token() — Method in class Store
Get the CSRF token value.
- TokenMismatchException — Class in namespace Illuminate\Session
- Collection::take() — Method in class Collection
Take the first or last {$limit} items.
- Collection::transform() — Method in class Collection
Transform each item in the collection using a callback.
- Collection::toArray() — Method in class Collection
Get the instance as an array.
- Collection::toJson() — Method in class Collection
Convert the object to its JSON representation.
- ArrayableInterface::toArray() — Method in class ArrayableInterface
Get the instance as an array.
- JsonableInterface::toJson() — Method in class JsonableInterface
Convert the object to its JSON representation.
- Fluent::toArray() — Method in class Fluent
Get the instance as an array.
- Fluent::toJson() — Method in class Fluent
Convert the object to its JSON representation.
- MessageBag::transform() — Method in class MessageBag
Format an array of messages.
- MessageBag::toArray() — Method in class MessageBag
Get the instance as an array.
- MessageBag::toJson() — Method in class MessageBag
Convert the object to its JSON representation.
- Str::title() — Method in class Str
Convert the given string to title case.
- TranslationServiceProvider — Class in namespace Illuminate\Translation
- Translator — Class in namespace Illuminate\Translation
- Translator::trans() — Method in class Translator
Get the translation for a given key.
- Translator::transChoice() — Method in class Translator
Get a translation according to an integer value.
- DatabasePresenceVerifier::table() — Method in class DatabasePresenceVerifier
Get a query builder for the given table.
- $ Factory#translator — Property in class Factory
The Translator implementation.
- $ Validator#translator — Property in class Validator
The Translator implementation.
U
- DatabaseUserProvider::updateRememberToken() — Method in class DatabaseUserProvider
Update the "remember me" token for the given user in storage.
- EloquentUserProvider::updateRememberToken() — Method in class EloquentUserProvider
Update the "remember me" token for the given user in storage.
- $ Guard#user — Property in class Guard
The currently authenticated user.
- Guard::user() — Method in class Guard
Get the currently authenticated user.
- Guard::updateSession() — Method in class Guard
Update the session with the given ID.
- $ PasswordBroker#users — Property in class PasswordBroker
The user provider implementation.
- UserInterface — Class in namespace Illuminate\Auth
- UserProviderInterface — Class in namespace Illuminate\Auth
- UserProviderInterface::updateRememberToken() — Method in class UserProviderInterface
Update the "remember me" token for the given user in storage.
- UserTrait — Class in namespace Illuminate\Auth
- CookieJar::unqueue() — Method in class CookieJar
Remove a cookie from the queue.
- Connection::useDefaultQueryGrammar() — Method in class Connection
Set the query grammar to the default implementation.
- Connection::useDefaultSchemaGrammar() — Method in class Connection
Set the schema grammar to the default implementation.
- Connection::useDefaultPostProcessor() — Method in class Connection
Set the query post processor to the default implementation.
- Connection::update() — Method in class Connection
Run an update statement against the database.
- Connection::unprepared() — Method in class Connection
Run a raw, unprepared query against the PDO connection.
- ConnectionInterface::update() — Method in class ConnectionInterface
Run an update statement against the database.
- ConnectionInterface::unprepared() — Method in class ConnectionInterface
Run a raw, unprepared query against the PDO connection.
- Builder::ungroupedPaginate() — Method in class Builder
Get a paginator for an ungrouped statement.
- Builder::update() — Method in class Builder
Update a record in the database.
- Collection::unique() — Method in class Collection
Return only unique items from the collection.
- $ Model#unguarded — Property in class Model
Indicates if all mass assignment is enabled.
- Model::updateOrCreate() — Method in class Model
Create or update a record matching the attributes, and fill it with values.
- Model::updating() — Method in class Model
Register an updating model event with the dispatcher.
- Model::updated() — Method in class Model
Register an updated model event with the dispatcher.
- Model::update() — Method in class Model
Update the model in the database.
- Model::updateTimestamps() — Method in class Model
Update the creation and update timestamps.
- Model::usesTimestamps() — Method in class Model
Determine if the model uses timestamps.
- Model::unguard() — Method in class Model
Disable all mass assignable restrictions.
- Model::unsetConnectionResolver() — Method in class Model
Unset the connection resolver for models.
- Model::unsetEventDispatcher() — Method in class Model
Unset the event dispatcher for models.
- BelongsTo::update() — Method in class BelongsTo
Update the parent model on the relationship.
- BelongsToMany::updateExistingPivot() — Method in class BelongsToMany
Update an existing pivot record on the table.
- HasOneOrMany::update() — Method in class HasOneOrMany
Perform an update on all the related models.
- MorphTo::useWithTrashed() — Method in class MorphTo
Return trashed models with query if told so
- Relation::updatedAt() — Method in class Relation
Get the name of the "updated at" column.
- $ Builder#unions — Property in class Builder
The query union statements.
- $ Builder#unionLimit — Property in class Builder
The maximum number of union records to return.
- $ Builder#unionOffset — Property in class Builder
The number of union records to skip.
- $ Builder#unionOrders — Property in class Builder
The orderings for the union query.
- $ Builder#useWritePdo — Property in class Builder
Whether use write pdo for select.
- Builder::union() — Method in class Builder
Add a union statement to the query.
- Builder::unionAll() — Method in class Builder
Add a union all statement to the query.
- Builder::ungroupedPaginate() — Method in class Builder
Create a paginator for an un-grouped pagination statement.
- Builder::update() — Method in class Builder
Update a record in the database.
- Builder::useWritePdo() — Method in class Builder
Use the write pdo for query.
- Blueprint::unique() — Method in class Blueprint
Specify a unique index for the table.
- Blueprint::unsignedInteger() — Method in class Blueprint
Create a new unsigned integer column on the table.
- Blueprint::unsignedBigInteger() — Method in class Blueprint
Create a new unsigned big integer column on the table.
- Encrypter::updateBlockSize() — Method in class Encrypter
Update the block size for the current cipher and mode.
- Dispatcher::until() — Method in class Dispatcher
Fire an event until the first non-null response is returned.
- Application::useArraySessions() — Method in class Application
Register a function for determining when to use array sessions.
- UpCommand — Class in namespace Illuminate\Foundation\Console
- $ FormBuilder#url — Property in class FormBuilder
The URL generator instance.
- FormBuilder::url() — Method in class FormBuilder
Create a url input field.
- $ HtmlBuilder#url — Property in class HtmlBuilder
The URL generator instance.
- HtmlBuilder::ul() — Method in class HtmlBuilder
Generate an un-ordered list of items.
- Request::url() — Method in class Request
Get the URL (no query string) for the request.
- Writer::useFiles() — Method in class Writer
Register a file log handler.
- Writer::useDailyFiles() — Method in class Writer
Register a daily file log handler.
- Writer::useErrorLog() — Method in class Writer
Register an error_log handler.
- $ MailgunTransport#url — Property in class MailgunTransport
THe Mailgun API end-point.
- $ Connection#username — Property in class Connection
The username for the connection.
- SecLibGateway::useAgent() — Method in class SecLibGateway
Determine if the SSH Agent should provide an RSA key.
- UriValidator — Class in namespace Illuminate\Routing\Matching
- $ Route#uri — Property in class Route
The URI pattern the route responds to.
- Route::uri() — Method in class Route
Get the URI associated with the route.
- Router::updateGroupStack() — Method in class Router
Update the group stack with the given attributes.
- Router::uses() — Method in class Router
Alias for the "currentRouteUses" method.
- UrlGenerator — Class in namespace Illuminate\Routing
- Collection::unique() — Method in class Collection
Return only unique items from the collection array.
- URL — Class in namespace Illuminate\Support\Facades
- $ Pluralizer#uncountable — Property in class Pluralizer
Uncountable word forms.
- Pluralizer::uncountable() — Method in class Pluralizer
Determine if the given value is uncountable.
- Str::upper() — Method in class Str
Convert the given string to upper-case.
V
- DatabaseUserProvider::validateCredentials() — Method in class DatabaseUserProvider
Validate a user against the given credentials.
- EloquentUserProvider::validateCredentials() — Method in class EloquentUserProvider
Validate a user against the given credentials.
- $ Guard#viaRemember — Property in class Guard
Indicates if the user was authenticated via a recaller cookie.
- Guard::validRecaller() — Method in class Guard
Determine if the recaller cookie is in a valid format.
- Guard::validate() — Method in class Guard
Validate a user's credentials.
- Guard::viaRemember() — Method in class Guard
Determine if the user was authenticated via "remember me" cookie.
- PasswordBroker::validateReset() — Method in class PasswordBroker
Validate a password reset for the given credentials.
- PasswordBroker::validator() — Method in class PasswordBroker
Set a custom password validator.
- PasswordBroker::validNewPasswords() — Method in class PasswordBroker
Determine if the passwords match for the request.
- PasswordBroker::validatePasswordWithDefaults() — Method in class PasswordBroker
Determine if the passwords are valid for the request.
- UserProviderInterface::validateCredentials() — Method in class UserProviderInterface
Validate a user against the given credentials.
- $ Model#visible — Property in class Model
The attributes that should be visible in arrays.
- $ Expression#value — Property in class Expression
The value of the expression.
- Encrypter::validMac() — Method in class Encrypter
Determine if the MAC for the given payload is valid.
- ViewPublishCommand — Class in namespace Illuminate\Foundation\Console
- $ ViewPublishCommand#view — Property in class ViewPublishCommand
The view publisher instance.
- ViewPublisher — Class in namespace Illuminate\Foundation
- $ Mailer#views — Property in class Mailer
The view factory instance.
- $ Factory#view — Property in class Factory
The view factory instance.
- $ Factory#viewName — Property in class Factory
The name of the pagination view.
- $ ControllerInspector#verbs — Property in class ControllerInspector
An array of HTTP verbs.
- ValidatorInterface — Class in namespace Illuminate\Routing\Matching
- $ Route#validators — Property in class Route
The validators used by the routes.
- $ Router#verbs — Property in class Router
All of the verbs supported by the router.
- Collection::values() — Method in class Collection
Reset the keys on the underlying array.
- Collection::valueRetriever() — Method in class Collection
Get a value retrieving callback.
- Response::view() — Method in class Response
Return a new view response from the application.
- Validator — Class in namespace Illuminate\Support\Facades
- View — Class in namespace Illuminate\Support\Facades
- $ SerializableClosure#variables — Property in class SerializableClosure
The variables that were "used" or imported from the parent scope
- ViewErrorBag — Class in namespace Illuminate\Support
- $ Factory#verifier — Property in class Factory
The Presence Verifier implementation.
- ValidationServiceProvider — Class in namespace Illuminate\Validation
- Validator — Class in namespace Illuminate\Validation
- Validator::validate() — Method in class Validator
Validate a given attribute against a rule.
- Validator::valid() — Method in class Validator
Returns the data which was valid.
- Validator::validateSometimes() — Method in class Validator
"Validate" optional attributes.
- Validator::validateRequired() — Method in class Validator
Validate that a required attribute exists.
- Validator::validateFilled() — Method in class Validator
Validate the given attribute is filled if it is present.
- Validator::validateRequiredWith() — Method in class Validator
Validate that an attribute exists when any other attribute exists.
- Validator::validateRequiredWithAll() — Method in class Validator
Validate that an attribute exists when all other attributes exists.
- Validator::validateRequiredWithout() — Method in class Validator
Validate that an attribute exists when another attribute does not.
- Validator::validateRequiredWithoutAll() — Method in class Validator
Validate that an attribute exists when all other attributes do not.
- Validator::validateRequiredIf() — Method in class Validator
Validate that an attribute exists when another attribute has a given value.
- Validator::validateConfirmed() — Method in class Validator
Validate that an attribute has a matching confirmation.
- Validator::validateSame() — Method in class Validator
Validate that two attributes match.
- Validator::validateDifferent() — Method in class Validator
Validate that an attribute is different from another attribute.
- Validator::validateAccepted() — Method in class Validator
Validate that an attribute was "accepted".
- Validator::validateArray() — Method in class Validator
Validate that an attribute is an array.
- Validator::validateBoolean() — Method in class Validator
Validate that an attribute is a boolean.
- Validator::validateInteger() — Method in class Validator
Validate that an attribute is an integer.
- Validator::validateNumeric() — Method in class Validator
Validate that an attribute is numeric.
- Validator::validateString() — Method in class Validator
Validate that an attribute is a string.
- Validator::validateDigits() — Method in class Validator
Validate that an attribute has a given number of digits.
- Validator::validateDigitsBetween() — Method in class Validator
Validate that an attribute is between a given number of digits.
- Validator::validateSize() — Method in class Validator
Validate the size of an attribute.
- Validator::validateBetween() — Method in class Validator
Validate the size of an attribute is between a set of values.
- Validator::validateMin() — Method in class Validator
Validate the size of an attribute is greater than a minimum value.
- Validator::validateMax() — Method in class Validator
Validate the size of an attribute is less than a maximum value.
- Validator::validateIn() — Method in class Validator
Validate an attribute is contained within a list of values.
- Validator::validateNotIn() — Method in class Validator
Validate an attribute is not contained within a list of values.
- Validator::validateUnique() — Method in class Validator
Validate the uniqueness of an attribute value on a given database table.
- Validator::validateExists() — Method in class Validator
Validate the existence of an attribute value in a database table.
- Validator::validateIp() — Method in class Validator
Validate that an attribute is a valid IP.
- Validator::validateEmail() — Method in class Validator
Validate that an attribute is a valid e-mail address.
- Validator::validateUrl() — Method in class Validator
Validate that an attribute is a valid URL.
- Validator::validateActiveUrl() — Method in class Validator
Validate that an attribute is an active URL.
- Validator::validateImage() — Method in class Validator
Validate the MIME type of a file is an image MIME type.
- Validator::validateMimes() — Method in class Validator
Validate the MIME type of a file upload attribute is in a set of MIME types.
- Validator::validateAlpha() — Method in class Validator
Validate that an attribute contains only alphabetic characters.
- Validator::validateAlphaNum() — Method in class Validator
Validate that an attribute contains only alpha-numeric characters.
- Validator::validateAlphaDash() — Method in class Validator
Validate that an attribute contains only alpha-numeric characters, dashes, and underscores.
- Validator::validateRegex() — Method in class Validator
Validate that an attribute passes a regular expression check.
- Validator::validateDate() — Method in class Validator
Validate that an attribute is a valid date.
- Validator::validateDateFormat() — Method in class Validator
Validate that an attribute matches a date format.
- Validator::validateBefore() — Method in class Validator
Validate the date is before a given date.
- Validator::validateBeforeWithFormat() — Method in class Validator
Validate the date is before a given date with a given format.
- Validator::validateAfter() — Method in class Validator
Validate the date is after a given date.
- Validator::validateAfterWithFormat() — Method in class Validator
Validate the date is after a given date with a given format.
- Validator::validateTimezone() — Method in class Validator
Validate that an attribute is a valid timezone.
- $ FileViewFinder#views — Property in class FileViewFinder
The array of views that have been located.
- View — Class in namespace Illuminate\View
- $ View#view — Property in class View
The name of the view.
- ViewFinderInterface — Class in namespace Illuminate\View
- ViewServiceProvider — Class in namespace Illuminate\View
- $ Package#vendor — Property in class Package
The vendor name of the package.
W
- WinCacheStore — Class in namespace Illuminate\Cache
- Connection::withTablePrefix() — Method in class Connection
Set the table prefix and return the grammar.
- MigrateMakeCommand::writeMigration() — Method in class MigrateMakeCommand
Write the migration file to disk.
- Builder::where() — Method in class Builder
Add a basic where clause to the query.
- Builder::whereHas() — Method in class Builder
Add a relationship count condition to the query with where clauses.
- Builder::whereDoesntHave() — Method in class Builder
Add a relationship count condition to the query with where clauses.
- Builder::with() — Method in class Builder
Set the relationships that should be eager loaded.
- $ Model#with — Property in class Model
The relations to eager load on every query.
- Model::with() — Method in class Model
Being querying a model with eager loading.
- BelongsToMany::wherePivot() — Method in class BelongsToMany
Set a where clause for a pivot table column.
- BelongsToMany::withPivot() — Method in class BelongsToMany
Set the columns on the pivot table to retrieve.
- BelongsToMany::withTimestamps() — Method in class BelongsToMany
Specify that the pivot table has creation and update timestamps.
- $ MorphTo#withTrashed — Property in class MorphTo
- MorphTo::withTrashed() — Method in class MorphTo
Fetch soft-deleted model instances with query
- Relation::wrap() — Method in class Relation
Wrap the given value with the parent query's grammar.
- SoftDeletingTrait::withTrashed() — Method in class SoftDeletingTrait
Get a new query builder that includes soft deletes.
- Grammar::wrapArray() — Method in class Grammar
Wrap an array of values.
- Grammar::wrapTable() — Method in class Grammar
Wrap a table in keyword identifiers.
- Grammar::wrap() — Method in class Grammar
Wrap a value in keyword identifiers.
- Grammar::wrapValue() — Method in class Grammar
Wrap a single string in keyword identifiers.
- $ Builder#wheres — Property in class Builder
The where constraints for the query.
- Builder::where() — Method in class Builder
Add a basic where clause to the query.
- Builder::whereRaw() — Method in class Builder
Add a raw where clause to the query.
- Builder::whereBetween() — Method in class Builder
Add a where between statement to the query.
- Builder::whereNotBetween() — Method in class Builder
Add a where not between statement to the query.
- Builder::whereNested() — Method in class Builder
Add a nested where statement to the query.
- Builder::whereSub() — Method in class Builder
Add a full sub-select to the query.
- Builder::whereExists() — Method in class Builder
Add an exists clause to the query.
- Builder::whereNotExists() — Method in class Builder
Add a where not exists clause to the query.
- Builder::whereIn() — Method in class Builder
Add a "where in" clause to the query.
- Builder::whereNotIn() — Method in class Builder
Add a "where not in" clause to the query.
- Builder::whereInSub() — Method in class Builder
Add a where in with a sub-select to the query.
- Builder::whereNull() — Method in class Builder
Add a "where null" clause to the query.
- Builder::whereNotNull() — Method in class Builder
Add a "where not null" clause to the query.
- Builder::whereDate() — Method in class Builder
Add a "where date" statement to the query.
- Builder::whereDay() — Method in class Builder
Add a "where day" statement to the query.
- Builder::whereMonth() — Method in class Builder
Add a "where month" statement to the query.
- Builder::whereYear() — Method in class Builder
Add a "where year" statement to the query.
- Grammar::whereNested() — Method in class Grammar
Compile a nested where clause.
- Grammar::whereSub() — Method in class Grammar
Compile a where condition with a sub-select.
- Grammar::whereBasic() — Method in class Grammar
Compile a basic where clause.
- Grammar::whereBetween() — Method in class Grammar
Compile a "between" where clause.
- Grammar::whereExists() — Method in class Grammar
Compile a where exists clause.
- Grammar::whereNotExists() — Method in class Grammar
Compile a where exists clause.
- Grammar::whereIn() — Method in class Grammar
Compile a "where in" clause.
- Grammar::whereNotIn() — Method in class Grammar
Compile a "where not in" clause.
- Grammar::whereInSub() — Method in class Grammar
Compile a where in sub-select clause.
- Grammar::whereNotInSub() — Method in class Grammar
Compile a where not in sub-select clause.
- Grammar::whereNull() — Method in class Grammar
Compile a "where null" clause.
- Grammar::whereNotNull() — Method in class Grammar
Compile a "where not null" clause.
- Grammar::whereDate() — Method in class Grammar
Compile a "where date" clause.
- Grammar::whereDay() — Method in class Grammar
Compile a "where day" clause.
- Grammar::whereMonth() — Method in class Grammar
Compile a "where month" clause.
- Grammar::whereYear() — Method in class Grammar
Compile a "where year" clause.
- Grammar::whereRaw() — Method in class Grammar
Compile a raw where clause.
- MySqlGrammar::wrapValue() — Method in class MySqlGrammar
Wrap a single string in keyword identifiers.
- SQLiteGrammar::whereDay() — Method in class SQLiteGrammar
Compile a "where day" clause.
- SQLiteGrammar::whereMonth() — Method in class SQLiteGrammar
Compile a "where month" clause.
- SQLiteGrammar::whereYear() — Method in class SQLiteGrammar
Compile a "where year" clause.
- SqlServerGrammar::wrapValue() — Method in class SqlServerGrammar
Wrap a single string in keyword identifiers.
- JoinClause::where() — Method in class JoinClause
Add an "on where" clause to the join.
- JoinClause::whereNull() — Method in class JoinClause
Add an "on where is null" clause to the join
- Grammar::wrapTable() — Method in class Grammar
Wrap a table in keyword identifiers.
- Grammar::wrap() — Method in class Grammar
Wrap a value in keyword identifiers.
- MySqlGrammar::wrapValue() — Method in class MySqlGrammar
Wrap a single string in keyword identifiers.
- $ Dispatcher#wildcards — Property in class Dispatcher
The wildcard listeners.
- WhoopsDisplayer — Class in namespace Illuminate\Exception
- $ WhoopsDisplayer#whoops — Property in class WhoopsDisplayer
The Whoops run instance.
- $ Composer#workingPath — Property in class Composer
The working path to regenerate from.
- ChangesCommand::writeHeader() — Method in class ChangesCommand
Write the heading for the change log.
- CommandMakeCommand::writeCommand() — Method in class CommandMakeCommand
Write the finished command file to disk.
- ProviderRepository::writeManifest() — Method in class ProviderRepository
Write the service manifest file to disk.
- RedirectResponse::with() — Method in class RedirectResponse
Flash a piece of data to the session.
- RedirectResponse::withCookie() — Method in class RedirectResponse
Add a cookie to the response.
- RedirectResponse::withCookies() — Method in class RedirectResponse
Add multiple cookies to the response.
- RedirectResponse::withInput() — Method in class RedirectResponse
Flash an array of input to the session.
- RedirectResponse::withErrors() — Method in class RedirectResponse
Flash a container of errors to the session.
- Request::wantsJson() — Method in class Request
Determine if the current request is asking for JSON in return.
- ResponseTrait::withCookie() — Method in class ResponseTrait
Add a cookie to the response.
- Writer — Class in namespace Illuminate\Log
- Writer::write() — Method in class Writer
Dynamically pass log calls into the writer.
- WorkCommand — Class in namespace Illuminate\Queue\Console
- $ WorkCommand#worker — Property in class WorkCommand
The queue worker instance.
- WorkCommand::writeOutput() — Method in class WorkCommand
Write the status output for the queue worker.
- $ Listener#workerCommand — Property in class Listener
The queue worker command line.
- Worker — Class in namespace Illuminate\Queue
- ControllerGenerator::writeFile() — Method in class ControllerGenerator
Write the completed stub to disk.
- $ Route#wheres — Property in class Route
The regular expression requirements.
- Route::where() — Method in class Route
Set a regular expression requirement on the route.
- Route::whereArray() — Method in class Route
Set a list of regular expression requirements on the route.
- Router::when() — Method in class Router
Register a pattern-based filter with the router.
- Router::whenRegex() — Method in class Router
Register a regular expression based filter with the router.
- Router::withoutFilters() — Method in class Router
Run a callback with filters disable on the router.
- CacheBasedSessionHandler::write() — Method in class CacheBasedSessionHandler
- {@inheritDoc}
- CookieSessionHandler::write() — Method in class CookieSessionHandler
- {@inheritDoc}
- DatabaseSessionHandler::write() — Method in class DatabaseSessionHandler
- {@inheritDoc}
- FileSessionHandler::write() — Method in class FileSessionHandler
- {@inheritDoc}
- Arr::where() — Method in class Arr
Filter the array using the given Closure.
- ServiceProvider::when() — Method in class ServiceProvider
Get the events that trigger this service provider to register.
- Str::words() — Method in class Str
Limit the number of words in a string.
- View::with() — Method in class View
Add a piece of data to the view.
- View::withErrors() — Method in class View
Add validation errors to the view.
- WorkbenchMakeCommand — Class in namespace Illuminate\Workbench\Console
- PackageCreator::writeSupportFiles() — Method in class PackageCreator
Write the support files to the package root.
- PackageCreator::writePhpUnitFile() — Method in class PackageCreator
Write the PHPUnit stub file.
- PackageCreator::writeTravisFile() — Method in class PackageCreator
Write the Travis stub file.
- PackageCreator::writeComposerFile() — Method in class PackageCreator
Write the Composer.json stub file.
- PackageCreator::writeIgnoreFile() — Method in class PackageCreator
Write the stub .gitignore file for the package.
- PackageCreator::writeSupportDirectories() — Method in class PackageCreator
Create the support directories for a package.
- PackageCreator::writeSupportDirectory() — Method in class PackageCreator
Write a specific support directory for the package.
- PackageCreator::writePublicDirectory() — Method in class PackageCreator
Create the public directory for the package.
- PackageCreator::writeTestDirectory() — Method in class PackageCreator
Create the test directory for the package.
- PackageCreator::writeServiceProvider() — Method in class PackageCreator
Write the stub ServiceProvider for the package.
- PackageCreator::writeProviderStub() — Method in class PackageCreator
Write the service provider stub for the package.
- WorkbenchServiceProvider — Class in namespace Illuminate\Workbench
X
- XCacheStore — Class in namespace Illuminate\Cache
Y
- Factory::yieldSection() — Method in class Factory
Stop injecting content into a section and return its contents.
- Factory::yieldContent() — Method in class Factory
Get the string contents of a section.
_
- IlluminateQueueClosure::__construct() — Method in class IlluminateQueueClosure
Create a new queued Closure job.
- RemindersControllerCommand::__construct() — Method in class RemindersControllerCommand
Create a new reminder table command instance.
- RemindersTableCommand::__construct() — Method in class RemindersTableCommand
Create a new reminder table command instance.
- DatabaseUserProvider::__construct() — Method in class DatabaseUserProvider
Create a new database user provider.
- EloquentUserProvider::__construct() — Method in class EloquentUserProvider
Create a new database user provider.
- GenericUser::__construct() — Method in class GenericUser
Create a new generic User object.
- GenericUser::__get() — Method in class GenericUser
Dynamically access the user's attributes.
- GenericUser::__set() — Method in class GenericUser
Dynamically set an attribute on the user.
- GenericUser::__isset() — Method in class GenericUser
Dynamically check if a value is set on the user.
- GenericUser::__unset() — Method in class GenericUser
Dynamically unset a value on the user.
- Guard::__construct() — Method in class Guard
Create a new authentication guard.
- DatabaseReminderRepository::__construct() — Method in class DatabaseReminderRepository
Create a new reminder repository instance.
- PasswordBroker::__construct() — Method in class PasswordBroker
Create a new password broker instance.
- ApcStore::__construct() — Method in class ApcStore
Create a new APC store.
- ApcWrapper::__construct() — Method in class ApcWrapper
Create a new APC wrapper instance.
- CacheTableCommand::__construct() — Method in class CacheTableCommand
Create a new session table command instance.
- ClearCommand::__construct() — Method in class ClearCommand
Create a new cache clear command instance.
- DatabaseStore::__construct() — Method in class DatabaseStore
Create a new database store.
- FileStore::__construct() — Method in class FileStore
Create a new file cache store instance.
- MemcachedStore::__construct() — Method in class MemcachedStore
Create a new Memcached store.
- RedisStore::__construct() — Method in class RedisStore
Create a new Redis store.
- Repository::__construct() — Method in class Repository
Create a new cache repository instance.
- Repository::__call() — Method in class Repository
Handle dynamic calls into macros or pass missing methods to the store.
- TagSet::__construct() — Method in class TagSet
Create a new TagSet instance.
- TaggedCache::__construct() — Method in class TaggedCache
Create a new tagged cache instance.
- WinCacheStore::__construct() — Method in class WinCacheStore
Create a new WinCache store.
- XCacheStore::__construct() — Method in class XCacheStore
Create a new WinCache store.
- EnvironmentVariables::__construct() — Method in class EnvironmentVariables
The server environment instance.
- FileEnvironmentVariablesLoader::__construct() — Method in class FileEnvironmentVariablesLoader
Create a new file environment loader instance.
- FileLoader::__construct() — Method in class FileLoader
Create a new file configuration loader.
- Repository::__construct() — Method in class Repository
Create a new configuration repository.
- Command::__construct() — Method in class Command
Create a new console command instance.
- Container::__get() — Method in class Container
Dynamically access container services.
- Container::__set() — Method in class Container
Dynamically set container services.
- Guard::__construct() — Method in class Guard
Create a new CookieGuard instance.
- Queue::__construct() — Method in class Queue
Create a new CookieQueue instance.
- Manager::__construct() — Method in class Manager
Create a new database capsule manager.
- Manager::__callStatic() — Method in class Manager
Dynamically pass methods to the default connection.
- Connection::__construct() — Method in class Connection
Create a new database connection instance.
- ConnectionResolver::__construct() — Method in class ConnectionResolver
Create a new connection resolver instance.
- ConnectionFactory::__construct() — Method in class ConnectionFactory
Create a new connection factory instance.
- InstallCommand::__construct() — Method in class InstallCommand
Create a new migration install command instance.
- MigrateCommand::__construct() — Method in class MigrateCommand
Create a new migration command instance.
- MigrateMakeCommand::__construct() — Method in class MigrateMakeCommand
Create a new migration install command instance.
- ResetCommand::__construct() — Method in class ResetCommand
Create a new migration rollback command instance.
- RollbackCommand::__construct() — Method in class RollbackCommand
Create a new migration rollback command instance.
- SeedCommand::__construct() — Method in class SeedCommand
Create a new database seed command instance.
- DatabaseManager::__construct() — Method in class DatabaseManager
Create a new database manager instance.
- DatabaseManager::__call() — Method in class DatabaseManager
Dynamically pass methods to the default connection.
- Builder::__construct() — Method in class Builder
Create a new Eloquent query builder instance.
- Builder::__call() — Method in class Builder
Dynamically handle calls into the query instance.
- Builder::__clone() — Method in class Builder
Force a clone of the underlying query builder when cloning.
- Model::__construct() — Method in class Model
Create a new Eloquent model instance.
- Model::__get() — Method in class Model
Dynamically retrieve attributes on the model.
- Model::__set() — Method in class Model
Dynamically set attributes on the model.
- Model::__isset() — Method in class Model
Determine if an attribute exists on the model.
- Model::__unset() — Method in class Model
Unset an attribute on the model.
- Model::__call() — Method in class Model
Handle dynamic method calls into the method.
- Model::__callStatic() — Method in class Model
Handle dynamic static method calls into the method.
- Model::__toString() — Method in class Model
Convert the model to its string representation.
- Model::__wakeup() — Method in class Model
When a model is being unserialized, check if it needs to be booted.
- BelongsTo::__construct() — Method in class BelongsTo
Create a new belongs to relationship instance.
- BelongsToMany::__construct() — Method in class BelongsToMany
Create a new has many relationship instance.
- HasManyThrough::__construct() — Method in class HasManyThrough
Create a new has many relationship instance.
- HasOneOrMany::__construct() — Method in class HasOneOrMany
Create a new has many relationship instance.
- MorphOneOrMany::__construct() — Method in class MorphOneOrMany
Create a new has many relationship instance.
- MorphTo::__construct() — Method in class MorphTo
Create a new belongs to relationship instance.
- MorphToMany::__construct() — Method in class MorphToMany
Create a new has many relationship instance.
- Pivot::__construct() — Method in class Pivot
Create a new pivot model instance.
- Relation::__construct() — Method in class Relation
Create a new relation instance.
- Relation::__call() — Method in class Relation
Handle dynamic method calls to the relationship.
- DatabaseMigrationRepository::__construct() — Method in class DatabaseMigrationRepository
Create a new database migration repository instance.
- MigrationCreator::__construct() — Method in class MigrationCreator
Create a new migration creator instance.
- Migrator::__construct() — Method in class Migrator
Create a new migrator instance.
- QueryException::__construct() — Method in class QueryException
Create a new query exception instance.
- Builder::__construct() — Method in class Builder
Create a new query builder instance.
- Builder::__call() — Method in class Builder
Handle dynamic method calls into the method.
- Expression::__construct() — Method in class Expression
Create a new raw query expression.
- Expression::__toString() — Method in class Expression
Get the value of the expression.
- JoinClause::__construct() — Method in class JoinClause
Create a new join clause instance.
- Blueprint::__construct() — Method in class Blueprint
Create a new schema blueprint.
- Builder::__construct() — Method in class Builder
Create a new database Schema manager.
- Encrypter::__construct() — Method in class Encrypter
Create a new encrypter instance.
- Dispatcher::__construct() — Method in class Dispatcher
Create a new event dispatcher instance.
- Handler::__construct() — Method in class Handler
Create a new error handler instance.
- SymfonyDisplayer::__construct() — Method in class SymfonyDisplayer
Create a new Symfony exception displayer.
- WhoopsDisplayer::__construct() — Method in class WhoopsDisplayer
Create a new Whoops exception displayer.
- AliasLoader::__construct() — Method in class AliasLoader
Create a new class alias loader instance.
- Application::__construct() — Method in class Application
Create a new Illuminate application instance.
- Artisan::__construct() — Method in class Artisan
Create a new Artisan command runner instance.
- Artisan::__call() — Method in class Artisan
Dynamically pass all missing methods to console Artisan.
- AssetPublisher::__construct() — Method in class AssetPublisher
Create a new asset publisher instance.
- Composer::__construct() — Method in class Composer
Create a new Composer manager instance.
- ConfigPublisher::__construct() — Method in class ConfigPublisher
Create a new configuration publisher instance.
- AssetPublishCommand::__construct() — Method in class AssetPublishCommand
Create a new asset publish command instance.
- AutoloadCommand::__construct() — Method in class AutoloadCommand
Create a new optimize command instance.
- CommandMakeCommand::__construct() — Method in class CommandMakeCommand
Create a new command creator command.
- ConfigPublishCommand::__construct() — Method in class ConfigPublishCommand
Create a new configuration publish command instance.
- KeyGenerateCommand::__construct() — Method in class KeyGenerateCommand
Create a new key generator command.
- OptimizeCommand::__construct() — Method in class OptimizeCommand
Create a new optimize command instance.
- RoutesCommand::__construct() — Method in class RoutesCommand
Create a new route command instance.
- ViewPublishCommand::__construct() — Method in class ViewPublishCommand
Create a new view publish command instance.
- MigrationPublisher::__construct() — Method in class MigrationPublisher
Create a new migration publisher instance.
- ProviderRepository::__construct() — Method in class ProviderRepository
Create a new service repository instance.
- ViewPublisher::__construct() — Method in class ViewPublisher
Create a new view publisher instance.
- FormBuilder::__construct() — Method in class FormBuilder
Create a new form builder instance.
- HtmlBuilder::__construct() — Method in class HtmlBuilder
Create a new HTML builder instance.
- FrameGuard::__construct() — Method in class FrameGuard
Create a new FrameGuard instance.
- JsonResponse::__construct() — Method in class JsonResponse
- Constructor.
- RedirectResponse::__call() — Method in class RedirectResponse
Dynamically bind flash data in the session.
- Writer::__construct() — Method in class Writer
Create a new log writer instance.
- Writer::__call() — Method in class Writer
Dynamically handle error additions.
- Mailer::__construct() — Method in class Mailer
Create a new Mailer instance.
- Message::__construct() — Method in class Message
Create a new message instance.
- Message::__call() — Method in class Message
Dynamically pass missing methods to the Swift instance.
- LogTransport::__construct() — Method in class LogTransport
Create a new log transport instance.
- MailgunTransport::__construct() — Method in class MailgunTransport
Create a new Mailgun transport instance.
- MandrillTransport::__construct() — Method in class MandrillTransport
Create a new Mandrill transport instance.
- Factory::__construct() — Method in class Factory
Create a new pagination factory.
- Paginator::__construct() — Method in class Paginator
Create a new Paginator instance.
- Paginator::__call() — Method in class Paginator
Call a method on the underlying Collection
- Presenter::__construct() — Method in class Presenter
Create a new Presenter instance.
- BeanstalkdQueue::__construct() — Method in class BeanstalkdQueue
Create a new Beanstalkd queue instance.
- Manager::__construct() — Method in class Manager
Create a new queue capsule manager.
- Manager::__call() — Method in class Manager
Pass dynamic instance methods to the manager.
- Manager::__callStatic() — Method in class Manager
Dynamically pass methods to the default connection.
- IronConnector::__construct() — Method in class IronConnector
Create a new Iron connector instance.
- RedisConnector::__construct() — Method in class RedisConnector
Create a new Redis queue connector instance.
- FailedTableCommand::__construct() — Method in class FailedTableCommand
Create a new session table command instance.
- ListenCommand::__construct() — Method in class ListenCommand
Create a new queue listen command.
- WorkCommand::__construct() — Method in class WorkCommand
Create a new queue listen command.
- DatabaseFailedJobProvider::__construct() — Method in class DatabaseFailedJobProvider
Create a new database failed job provider.
- IronQueue::__construct() — Method in class IronQueue
Create a new IronMQ queue instance.
- BeanstalkdJob::__construct() — Method in class BeanstalkdJob
Create a new job instance.
- IronJob::__construct() — Method in class IronJob
Create a new job instance.
- RedisJob::__construct() — Method in class RedisJob
Create a new job instance.
- SqsJob::__construct() — Method in class SqsJob
Create a new job instance.
- SyncJob::__construct() — Method in class SyncJob
Create a new job instance.
- Listener::__construct() — Method in class Listener
Create a new queue listener.
- QueueManager::__construct() — Method in class QueueManager
Create a new queue manager instance.
- QueueManager::__call() — Method in class QueueManager
Dynamically pass calls to the default connection.
- RedisQueue::__construct() — Method in class RedisQueue
Create a new Redis queue instance.
- SqsQueue::__construct() — Method in class SqsQueue
Create a new Amazon SQS queue instance.
- Worker::__construct() — Method in class Worker
Create a new queue worker.
- Database::__construct() — Method in class Database
Create a new Redis connection instance.
- Database::__call() — Method in class Database
Dynamically make a Redis command.
- Connection::__construct() — Method in class Connection
Create a new SSH connection instance.
- MultiConnection::__construct() — Method in class MultiConnection
The array of connections.
- RemoteManager::__construct() — Method in class RemoteManager
Create a new remote manager instance.
- RemoteManager::__call() — Method in class RemoteManager
Dynamically pass methods to the default connection.
- SecLibGateway::__construct() — Method in class SecLibGateway
Create a new gateway implementation.
- MakeControllerCommand::__construct() — Method in class MakeControllerCommand
Create a new make controller command instance.
- Controller::__call() — Method in class Controller
Handle calls to missing methods on the controller.
- ControllerDispatcher::__construct() — Method in class ControllerDispatcher
Create a new controller dispatcher instance.
- ControllerGenerator::__construct() — Method in class ControllerGenerator
Create a new controller generator instance.
- Redirector::__construct() — Method in class Redirector
Create a new Redirector instance.
- Route::__construct() — Method in class Route
Create a new Route instance.
- Router::__construct() — Method in class Router
Create a new Router instance.
- UrlGenerator::__construct() — Method in class UrlGenerator
Create a new URL Generator instance.
- CacheBasedSessionHandler::__construct() — Method in class CacheBasedSessionHandler
Create a new cache driven handler instance.
- SessionTableCommand::__construct() — Method in class SessionTableCommand
Create a new session table command instance.
- CookieSessionHandler::__construct() — Method in class CookieSessionHandler
Create a new cookie driven handler instance.
- DatabaseSessionHandler::__construct() — Method in class DatabaseSessionHandler
Create a new database session handler instance.
- FileSessionHandler::__construct() — Method in class FileSessionHandler
Create a new file driven handler instance.
- Middleware::__construct() — Method in class Middleware
Create a new session middleware.
- Store::__construct() — Method in class Store
Create a new session instance.
- Collection::__construct() — Method in class Collection
Create a new collection.
- Collection::__toString() — Method in class Collection
Convert the collection to its string representation.
- Facade::__callStatic() — Method in class Facade
Handle dynamic, static calls to the object.
- Fluent::__construct() — Method in class Fluent
Create a new fluent container instance.
- Fluent::__call() — Method in class Fluent
Handle dynamic calls to the container to set attributes.
- Fluent::__get() — Method in class Fluent
Dynamically retrieve the value of an attribute.
- Fluent::__set() — Method in class Fluent
Dynamically set the value of an attribute.
- Fluent::__isset() — Method in class Fluent
Dynamically check if an attribute is set.
- Fluent::__unset() — Method in class Fluent
Dynamically unset an attribute.
- Manager::__construct() — Method in class Manager
Create a new manager instance.
- Manager::__call() — Method in class Manager
Dynamically call the default driver instance.
- MessageBag::__construct() — Method in class MessageBag
Create a new message bag instance.
- MessageBag::__toString() — Method in class MessageBag
Convert the message bag to its string representation.
- ServiceProvider::__construct() — Method in class ServiceProvider
Create a new service provider instance.
- MacroableTrait::__callStatic() — Method in class MacroableTrait
Dynamically handle calls to the class.
- MacroableTrait::__call() — Method in class MacroableTrait
Dynamically handle calls to the class.
- ViewErrorBag::__call() — Method in class ViewErrorBag
Dynamically call methods on the default bag.
- ViewErrorBag::__get() — Method in class ViewErrorBag
Dynamically access a view error bag.
- ViewErrorBag::__set() — Method in class ViewErrorBag
Dynamically set a view error bag.
- FileLoader::__construct() — Method in class FileLoader
Create a new file loader instance.
- Translator::__construct() — Method in class Translator
Create a new translator instance.
- DatabasePresenceVerifier::__construct() — Method in class DatabasePresenceVerifier
Create a new database presence verifier.
- Factory::__construct() — Method in class Factory
Create a new Validator factory instance.
- Validator::__construct() — Method in class Validator
Create a new Validator instance.
- Validator::__call() — Method in class Validator
Handle dynamic calls to class methods.
- Compiler::__construct() — Method in class Compiler
Create a new compiler instance.
- CompilerEngine::__construct() — Method in class CompilerEngine
Create a new Blade view engine instance.
- Factory::__construct() — Method in class Factory
Create a new view factory instance.
- FileViewFinder::__construct() — Method in class FileViewFinder
Create a new file view loader instance.
- View::__construct() — Method in class View
Create a new view instance.
- View::__get() — Method in class View
Get a piece of data from the view.
- View::__set() — Method in class View
Set a piece of data on the view.
- View::__isset() — Method in class View
Check if a piece of data is bound to the view.
- View::__unset() — Method in class View
Remove a piece of bound data from the view.
- View::__call() — Method in class View
Dynamically bind parameters to the view.
- View::__toString() — Method in class View
Get the string contents of the view.
- WorkbenchMakeCommand::__construct() — Method in class WorkbenchMakeCommand
Create a new make workbench command instance.
- Package::__construct() — Method in class Package
Create a new package instance.
- PackageCreator::__construct() — Method in class PackageCreator
Create a new package creator instance.