| title | Cache |
|---|---|
| description | Configuring a custom cache driver |
By default, Laravel Zero uses the array driver for caching. This means that using the Cache facade will work out of the box for the remainder of a commands process.
You can configure one or more custom cache drivers for your application by publishing the configuration file:
php <your-app-name> config:publish cacheFull details on using the Cache drivers are available on the main Laravel documentation.