Showing 10 of 2,044 results.

17. Interpretation of Sections 15 and 16. | License

If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability...

9. Acceptance Not Required for Having Copies. | License

…ot required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require...

17. Interpretation of Sections 15 and 16. | License

If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability...

Default Filters | Basic Filtering

…you need, there are no extra steps on your end and you can just use the following snippet: 1 {{ meerkat : responses }} 2 3 {{ comments }} 4 <!-- Render your comment thread. --> 5 {{ /comments }} 6 7 {{ /meerkat : responses }} For more information...

Laravel 5: Hashing Strings With bcrypt

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 function should produce a...

rounds | Laravel 5: Hashing Strings With bcrypt

The rounds option is used to control how many iterations the underlying Blowfish implementation will use when generating the final hash. The rounds value can be any positive integer between 4 and 31 (including both 4 and 31 ). If an integer...

Command Interoperability and Laravel Artisan Applications

…workflow involves writing commands that interact with different components of the application or external services; the commands themselves are usually isolated in their scope and generally do not depend on other commands or operating system...

Core Validators | The Validate Command

The Blade Parser library provides many validation rules out of the box. You can learn more about each of them in the following sections.

RSS and Atom Feeds

Tidal integrates the fantastic Feedamic add-on, created by Mity Digital , to create and manage RSS and Atom feeds. The best way to get caught up on how to work with Feedamic is to read the official documentation. The Feedamic configuration file...

Laravel 5: Get the Current Date With today

The today helper function is similar to the now helper function in that it returns a Carbon for the current date, however, the difference is that the today helper function only returns the date component; the time component is set to 00:00:00 ....