Search

Showing 7 of 587 result(s)

/blog/2018/04/21/laravel-5-facades#content-additional-cookie-methods

The Cookie facade defines two additional methods. These methods access other, related, components. These methods exist to simplify accessing related components.

/blog/2018/04/21/laravel-5-facades#content-additional-input-methods

The Input facade defines one extra method. Facades define extra methods to provide simpler access to underlying sub-systems, or to call functions on other, related components.

/blog/2018/04/21/laravel-5-facades#content-additional-schema-methods

The Schema facade defines one extra method. Facades define extra methods to provide simpler access to underlying sub-systems, or to call functions on other, related components, or to provide greater testability of the framework components.

/blog/2018/04/21/laravel-5-facades#content-additional-notification-methods

The Notification facade defines a few extra methods that can be called without resolving the notification sub-system from the service container. Facades define extra methods to provide simpler access to underlying sub-systems, or to call functions...

/blog/2018/04/21/laravel-5-fluent-api-the-public-api#content-getting-keyvalue-data-associations-with-getattributes

The getAttributes method simply returns an array containing all key/value pairs, representing the underlying data contained within the Fluent instance.

/blog/2018/04/21/laravel-5-macros-call-and-callstatic#content-important-notes-on-call-and-callstatic

Because Macroable depends on both the __call and __callStatic methods to be available for its own use, it is currently not possible to use the Macroable trait in a class that also requires returning a value from either __call or __callStatic...

/blog/2018/04/21/laravel-5-message-bags-adding-messages-to-the-message-bag-with-add#content-notes-on-keys

The $key supplied to the add method should make sense in some context. The examples so far have been fairly arbitrary, and are mainly designed to explain the concepts that are being presented. However, MessageBag instances are most commonly...