Licensing
Meerkat is not free software, and is licensed on a per-site basis. Each site must also have an appropriate Statamic License .
Showing 10 of 1,090 results.
Meerkat is not free software, and is licensed on a per-site basis. Each site must also have an appropriate Statamic License .
Laravel's Illuminate\Console\Command base class provides useful methods for interoping with other Artisan commands: the call($command, array $arguments = []) and callSilent($command, array $arguments = []) methods. Both methods accept the name of...
The call and callSilent commands discussed in the previous section are defined as part of the Artisan Command base class, which is not incredibly useful when commands need to be executed from other locations within the application's code base....
…ion_handle>/_default.antlers.html The documentation search provider expects the template to produce HTML, with all headings in-place. When outputting headings for sections within the document, please be sure to output headings that match your...
…tional callable as the fourth argument: 1 <?php 2 3 // Modify the template before its rendered. 4 $ results = $ manager -> render ( 5 ' collection_handle ' , 6 ' blueprint_handle ' , 7 $ data , 8 function ( $ template , $ data ) { 9 return...
The signature of the camel method is: 1 public static function camel ( 2 $ value 3 ) ;
The following examples will all return the string myWords : 1 use Illuminate \ Support \ Str ; 2 3 // myWords 4 echo Str :: camel ( ' my words ' ) ; 5 6 // myWords 7 echo Str :: camel ( ' my-words ' ) ; 8 9 // myWords 10 echo Str :: camel ( '...
The camel_case function is a shortcut to calling Str::camel . This function is declared in the global namespace.
Like the sortBy method, the sortByDesc method can also be used with higher order messages. We will adjust the example explored in the sortBy section: The PeripheralDevice Class: 1 class PeripheralDevice 2 { 3 public $ name = ' ' ; 4 5 public...
The PoLP is based on the idea of giving users, processes, or devices only the minimum level of access to resources that they need to perform authorized activities. It'll help you significantly reduce the risk of damage caused by unauthorized...