Showing 10 of 1,090 results.

Laravel Router Helper Function: post

post($uri, $action) The post function is a shortcut to registering a route with the router that responds to the POST HTTP verb. The $uri is the URI of the route, such as / or login . The $action is what will be executed by the router when the...

Laravel Application Helper: storage_path

storage_path($path = '') The storage_path will return the path to the storage directory. It can also be used to construct paths relative to the storage directory if a $path is supplied. The following examples will assume that the Laravel...

Laravel Application Helper: app

app($make = null, $parameters = []) The app function provides access to the Illuminate\Container\Container instance. Because Container is a singleton, any call to app() will return the same Container instance. The app function can also be used to...

Laravel Helper Function: bcrypt

bcrypt($value, $options = []) The bcrypt function will return a hashed representation of the given $value . The bcrypt function also accepts an array of $options which can be used to affect how the hash is computed. Each invocation of the bcrypt...

se_current_view:start Tag | se_current_view Tag

The se_current_view:start tag will output a <!-- START: --> HTML comment with the current relative view path. This tag does nothing when the site is in production mode. 1 {{ se_current_view : start / }}

se_current_view:end Tag | se_current_view Tag

The se_current_view:end tag will output a <!-- END: --> HTML comment with the current relative view path. This tag does nothing when the site is in production mode. 1 {{ se_current_view : end / }}

Filter Search