Last active
November 14, 2015 08:43
-
-
Save zofe/32c86cba1c5db70da69c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $response = \Cache::remember('mia_chiave', env('CACHE_EXPIRE'), function() { | |
| return view('path.vista')->render(); | |
| }); | |
| return response($response,200); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment