Search

Showing 7 of 1,697 result(s)

/blog/2018/04/21/laravel-5-facades#content-haskey

The has function will check if a cookie with the given $key exists for the current request.

/blog/2018/04/21/laravel-5-facades#content-getkey--null-default--null

The get method will get an item from the input data, such as when a user posts a form or an API request is being processed. The get method can be used for requests with the following HTTP verbs: GET, POST, PUT, DELETE The get method will invoke...

/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-facades#content-fake

The fake method will swap the currently bound notification channel manager instance with a fake; this is incredibly useful for testing purposes. The fake notification manager instance, by default, is an instance of...

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

The Queue facade defines one extra method to help make testing queue functionality within your applications easier.

/blog/2018/04/21/laravel-5-facades#content-fake-1

The fake method will swap the currently bound queue manager instance with a fake; this is incredibly useful for testing purposes. The fake queue manager instance, by default, is an instance of "Illuminate\Support\Testing\Fakes\QueueFake".