Showing 10 of 2,055 results.

Troubleshooting

…eiving errors like unable to open file /tmp/magick- you may need install ImageMagick itself on your server. Because the installation steps may vary dramatically, be sure to research the appropriate installation steps for your particular...

Thoughts on HTML Elements and Blade Components in Forte

My focus this week with Forte has been continuing to work on the HTML tokenizer and parser. I've done enough Blade parsers over the years, where the "Blade" parts are largely a solved problem, and it won't be much work for me to shore up that side...

Example Use | Laravel 5: Retrieving Nested Array Values With pluck

…so: 1 $ people = [ 2 new Person ( ' Jane ' , ' Carter ' ) , 3 new Person ( ' John ' , ' Doe ' ) , 4 new Person ( ' Jack ' , ' Smith ' ) 5 ] ; At this point all we have is a simple Person class definition an array of person objects, called $people...

Available Variables | Search Results Tag

…on of an entry (based on headings), this will contain the heading's inner text., search_url, : The link to either the entry, in the case of the entry's leading content, or a, #, link to an individual section. Links to individual sections is based...

11. Patents. | License

A “contributor” is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's “contributor version”. A contributor's “essential patent claims”...

Laravel Localization: The File Loader

The FileLoader is the class that is responsible for loading the translation files from the file system. The language files are loaded from the /resources/lang/ directory by default. The lang/ directory contains the en (English from the ISO 639-1...

Laravel Artisan Schedule Command: The schedule:run Command

The schedule:run command is used to run any commands that need to be ran. It is most often used in conjunction with a job or task scheduler utility, such as Cron. The command can be run in a one-off fashion like so: 1 # Run the schedule command...

JavaScript: Checking If a Variable Is Defined

…ecause the typeof operator will return a string. Just a little piece of information for the tool belt. The inverse of this is: 1 if ( typeof myVariableName !== ' undefined ' ) { 2 // The myVariableName is defined. We can do whatever we want with...

11. Patents. | License

A “contributor” is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's “contributor version”. A contributor's “essential patent claims”...