Showing 10 of 2,055 results.

getErrors | Validating Workspaces

Retrieves a collection of BladeError instances for the workspace. 1 <?php 2 3 use Illuminate \ Support \ Collection ; 4 5 public function getErrors ( ) : Collection ;

Menu Item Sections | Navigation Menus

…y to the entry's URL will generate a 404 HTTP response if the item has no children. If the section navigation item does have children, navigating directly to the page will redirect the user to the first child's URL. If you'd like to learn more...

Laravel 4: Getting User Input

No matter what application you're developing, or what platform you are developing on, it is a safe bet you need to get input from your users some how. Laravel 4 provides a really convenient way to do this using the Input facade. Let's look at a...

Example Use | Laravel 5: Hashing Strings With bcrypt

The following example demonstrates how to call the bcrypt function: 1 for ( $ i = 0 ; $ i < 10 ; $ i ++ ) 2 { 3 // echo the hash and an HTML line break 4 echo bcrypt ( ' test ' ) , ' <br> ' ; 5 } The above example would output something similar to...