Showing 10 of 1,322 results.

10. Automatic Licensing of Downstream Recipients. | License

Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties...

Laravel Artisan Generator Command: The make:controller Command

The make:controller command can be used to quickly generate a new controller class file in the app/Http/Controllers directory. A name for the newly created controller must be provided. The name will become the name of the newly generated class and...

Laravel Artisan Generator Command: The make:mail Command

…28 public function build ( ) 29 { 30 return $ this -> view ( ' view.name ' ) ; 31 } 32 } If the provided class name has already been taken by another mail class, the command will issue an error stating something similar to "Mail already exists!"....

Method 1: Template Adjustments | Guide: User-Only Comment Setup

We need to let Meerkat know about the user who is submitting the comment. The simplest way to do this is by adding a hidden authenticated_user field to your Meerkat form template (extra functionality has been removed from the template for...

Localization

…all the actions in the Control Panel. codes.php Maps error codes to another file's language string. commands.php Provides translations for various commands and table commands. config.php Provides translation strings for the Meerkat configuration...

10. Automatic Licensing of Downstream Recipients. | License

Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties...

Laravel 5 Collections: Retrieving Collection Elements With all

…ollowing code demonstrates the usage of the all method: 1 use Illuminate \ Support \ Collection ; 2 3 $ items = [ 4 ' first ' => ' I am first ' , 5 ' second ' => ' I am second ' 6 ] ; 7 8 $ collection = Collection :: make ( $ items ) ; 9 10 $...

Laravel Artisan: The Tinker Command

The ability to easily interactive with your application to experiment or debug issues is an incredibly important thing. To help with this, Laravel provides a tinker command out of the box. The tinker command uses the PsySH library to setup a REPL...