Showing 10 of 1,090 results.

Limiting Visitor Data Collection | Product Data Privacy

Meerkat allows site administrators to easily disable what additional data your site collects about visitors when they submit a comment. These settings can be adjusted in the Control Panel. View the User and Visitor Data Privacy article to learn more.

Integrating Laravel Spark, Stripe, and Statamic 3

Throughout this article we will create a fairly basic integration between Statamic 3 and the newly updated Laravel Spark . This guide will be using Spark's Stripe option, but if you want to use Paddle, the overall steps should not be too...

Looking Forward | Rebuilding Stillat.com

The process of rebuilding the site has been fun, and there is still much work to be done. However, I am glad that the brunt of the work is done so that I can get back to publishing content again more consistently. I also have some ideas for video...

Building a Simple Statamic Request Addon

In this tutorial we will look at building a really simple Statamic addon. The addon we will build will let us determine if the incoming web request to our site has a specific query parameter; this will allow us to have greater control in the way...

Example Use | Laravel 5: Ensuring a Value is an Array With wrap

In the introduction of this section, we saw this example code: 1 function checkDomains ( $ domains ) { 2 if ( ! is_array ( $ domains ) ) { 3 $ domains = ( array ) $ domains ; 4 } 5 6 foreach ( $ domains as $ domain ) { 7 // Perform some operation...

Laravel 5: Accessing HTTP Request Details With request

The request helper function is a useful helper function that can be used to either retrieve an instance of Illuminate\Http\Request or retrieve an item from the user's input. To retrieve an instance of Request , call the request method without...

Templating Considerations | Creating Image Templates

When creating templates, be sure to keep the following considerations in mind: Templates are rendered using raw HTML, and do not make a request to your site for each page. General Cascade data will be made available to you, but you should not rely...

Implementing Laravel Artisan Console Commands

…parent :: __construct ( ) ; 31 } 32 33 /** 34 * Execute the console command. 35 * 36 * @return mixed 37 */ 38 public function handle ( ) 39 { 40 // 41 } 42 } As can be seen in the above output, each command contains a $signature and $description...

Laravel 5: Recover From Possible Exceptions With rescue

The rescue function can be used to attempt execution of an operation that has the potential to throw an exception. The rescue function will allow you to specify a default value, through the $rescue parameter that will be returned if the operation...

Filter Search