Signature | Laravel 5: Generating Secure URLs to Assets With secure_asset
The signature of the secure_asset function is: 1 function secure_asset ( 2 $ path 3 ) ;
Showing 10 of 2,145 results.
The signature of the secure_asset function is: 1 function secure_asset ( 2 $ path 3 ) ;
The signature of the with function is: 1 function with ( 2 $ value , 3 callable $ callback = null 4 ) ;
Meerkat will call various methods throughout the reply process. You can tap into these by supplying your own implementation for the submit , canceled , and replyOpen methods.
The down command is used to put the application into maintenance mode. It does this by creating a file named down in the framework storage path (which by default is storage/framework/ ). This command performs the same action as the php artisan...
The route:clear command is used to clear any previously generated route cache files. It does this by removing the bootstrap/cache/routes.php cache file. It defines no parameters or options can can be called like so: 1 # Clear the route cache file....
The primary method of generating images is using the generate-images Artisan command: 1 php artisan social-media-image-kit:generate-images This command will generate images for each collection that has been configured. During the process, you...
In this article, we will look at one way to construct dynamic CSS class names when writing Antlers templates for a Statamic site. This technique will utilize the Antlers Runtime parser and the yield and section features.
The clear-compiled command is used to clear the compiled classes and services application cache. These two files are located in the bootstrap/cache/ directory. The compiled classes cache is stored in a file named compiled.php and the services...
The fake method will swap the currently bound queue manager instance with a fake; this is incredibly useful for testing purposes. The fake queue manager instance, by default, is an instance of "Illuminate\Support\Testing\Fakes\QueueFake".