Laravel devs, did you know Cache::get accepts a closure as a fallback? 💡
It runs only if the key is missing
But it does not store the result in cache ❌
Use Cache::remember if you want to store it ✅
•