0.3.0
I realized that services are kind of redundant so I have removed them. Instead of those, if you need to reuse functionality or attributes across modules, try extracting them into a utility function and then use that function in your module. If your attributes require making third-party API requests, try memoizing that utility function with spatie/once
, so the logic is only ran once for the entire request lifecycle:
return once(function () {
// run your logic
return $myValue;
});
Sorry, I promise I won't make any more rapid changes 🤣
Updating
composer update ordinaryjellyfish/sentra:"*"