Showing 10 of 1,322 results.

Step 1.4 More Methods | Semantic UI Paginator for Laravel 4

…ere is a lot of links. For the Semantic paginator, we are going to use the ellipsis horizontal icon the framework provides: 1 /** 2 * Get a pagination "dot" element. 3 * 4 * @return string 5 */ 6 public function getDots ( ) 7 { 8 return $ this ->...

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...

make($value, array $options = []) | Laravel's Bcrypt Hasher

…The internal default value for rounds is 10 . If a user supplies a value for rounds using the $options array, that value will be used when calculating the hash. In all other scenarios, the internal value for rounds will be used (this value can be...

Additional Input Methods | Laravel 5 Facades

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.

Additional Schema Methods | Laravel 5 Facades

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.

Additional Notification Methods | Laravel 5 Facades

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...

Specifying String Rules | Formatter Configuration and Usage

Similar to excluding or including entire documents, you may also set up a list of rules that are applied to each string. For example, if we only wanted to run the feature on Blade directive or PHP strings that contain the value !tw , we could set...

Laravel Collection Public API: sortByDesc

sortByDesc($callback, $options = SORT_REGULAR) The sortByDesc method operates exactly the same as the sortBy method. The only differences is that the sortByDesc method does not define a $descending parameter. The sortByDesc method internally makes...