Search

Showing 7 of 1,216 result(s)

/blog/2016/11/30/the-laravel-translator

…Symfony's Symfony\Component\Translation\TranslatorInterface interface so it should look familiar to developers coming from a Symfony background. The following explanations of the various API methods will be using the passwords group that ships...

/blog/2016/12/01/basic-structure-of-laravel-artisan-console-commands

…r to the following output: As can be seen in the above output, each command contains a $signature and $description property. The $signature property is used to specify what arguments and options the command can accept (this property did not exist...

/blade-parser/v1/the-compiler#content-setcompilecorecomponents

Sets whether to compile core Laravel component tags. When set to false, the internal component tag compiler will not compile Laravel component tags (<x-, <x:, etc.). Argument Description $compileCoreComponents Whether to compile core Laravel...

/blog/2016/11/20/a-comparison-of-the-abort-abort_if-and-abort_unless-helper-functions

This article is a short comparison of the following application helper functions: Laravel Application Helper Function: abort, Laravel Application Helper: abort_if, Laravel Application Helper: abort_unless All three functions ( abort , abort_if and...

/blog/2021/12/12/creating-a-content-reaction-system-with-statamic-3-and-antlers#content-writing-the-php-code-to-store-reactions

…development of creating a file on a web server and navigating to that page (or using the name of a PHP file as form's action), we are going to do something very similar, but utilize a concept called routing . Since Statamic 3 is built on top of...

/blog/2023/04/10/creating-a-custom-statamic-layout-tag#content-accessing-the-view-instance

…eadaches/problems later. It might be tempting to give up at this point since there does not appear to be any supported way to do this. However, suppose we study the view method carefully. In that case, we can see that our View instance is created...

/blog/2023/09/03/creating-a-hybrid-cache-system-for-statamic#content-organization-singletons-and-facades

…he\Manager implementation and from many diverse places within the codebase. Because the cache's current state is critical, regardless of which part of the request/response lifecycle we are in, we will register our Manager class as a singleton...