Cache config

This commit is contained in:
Daniel Brendel
2024-04-05 22:33:43 +02:00
parent 3ffc0d46f1
commit f13e7fff35
2 changed files with 11 additions and 6 deletions

6
app/config/cache.php Normal file
View File

@ -0,0 +1,6 @@
<?php
return [
'driver' => env('CACHE_DRIVER', null),
'duration' => env('CACHE_DURATION', 123)
];