Showing 10 of 1,204 results.

16. Limitation of Liability. | License

IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL,...

Laravel Task Scheduling: Running the Task Scheduler

…dded to automatically run the task scheduler every minute. Laravel will handle the scheduled tasks and run any that are due automatically: 1 * * * * * php /path/to/artisan schedule:run >> /dev/null 2>&1 It is important to update the...

An Introduction to Laravel View Error Bags

…ewErrorBag instance that is shared with views is given the name errors . Interacting with the ViewErrorBag instance should look familiar to most developers: 1 @ if ( $ errors -> count ( ) ) 2 < div class = " alert alert-danger " > 3 < p > There...

Getting the Environment Name in Laravel 4

…access the application. Using environments, our Laravel 4 application can automatically change to a different database server or use a different cache driver. However, when we are writing our own code and would like to check the environment name...

Laravel Collection Public API: search

…hod is used to search the collection for a given $value . If the given $value is found, the value's corresponding key is returned. If the $value is not found in the collection, the search method will return false . The search method also defines...

Laravel: Available Hashing Methods

…. Allows for a twelve character salt, starting with the string $1$ . Because of the required characters in the salt, we are left with only eight usable characters for our salt. Insecure CRYPT_BLOWFISH Blowfish hashing. Salt begins with $2y$ , a...

Filter Search