Showing 10 of 2,145 results.

Setup & Configuration

Search Report for Statamic stores search logs within a database, even if the rest of your site is using flat files. If you don't want to setup a large database server, you may also use SQLite. For more information on how to configure a database...

Laravel Hashing: One Way Encryption

Hashing data is a common task in software development. Hashing is similar to encryption, with the difference that hashing is a one-way process. The goal is that the original message cannot be retrieved from the resulting hash. Hashing is...

Laravel Artisan Queue Command: The queue:work Command

The queue:work command is similar to the queue:listen command, but with a few differences. This command can be used to process only the first job on the queue in a "one off" fashion like so: 1 # Process the first job using the `--once` option. 2...