1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 19:14:04 +00:00

global_cache() helper

This commit is contained in:
Samuel Štancl 2019-09-22 19:45:30 +02:00
parent 4a17992957
commit 9d73de2840

View file

@ -40,3 +40,10 @@ if (! \function_exists('global_asset')) {
return app('globalUrl')->asset($asset);
}
}
if (! \function_exists('global_cache')) {
function global_cache()
{
return app('globalCache');
}
}