Showing 7 of 1,216 result(s)
In this article, we will create a service provider for all all of the custom hashing implementations that we created in previous articles. The articles about the hashing implementations can be found at these locations: Laravel: Implementing a...
Environments in Laravel 4 are a great way to develop your application and have it respond to the environment it is running in. For example, most applications have two environments that they will ever run in: local and production . You can think of...
Now we need to configure Laravel to use our Semantic UI paginator view. Don't worry - this is really easy. Open up the config/view.php file and look for the pagination key within the array and change its value to the location of your Semantic...
…ide of a Blade view, a checkbox can be created using the Form class: {{ Form::checkbox('my_checkbox', '1') }} In the above code sample, my_checkbox is the name of the input element and 1 is the value the checkbox was given. This would generate...
…r. The signature for the equals helper method is: equals($knownString, $userInput) The following examples will highlight some example usage of the equals method. The returned result of the method will appear above the method call as a comment: As...
The parseCallback helper method is a fairly simple method, even though it serves a somewhat specialized purpose. The following syntax for class names and method names can be found utilized throughout the Laravel framework: ClassName@someMethodName...
…han the results of the random method. randomBytes requires the OpenSSL extension extension for PHP version 5 as it will internally use the openssl_random_pseudo_bytes function. For PHP version 7, the random_bytes function will be utilized. And as...
The following amazing people help support this site and my open source projects ♥️
If you're interesting in supporting my work and want to show up on this list, check out my GitHub Sponsors Profile.