<?php
namespace App\Services;
use App\Models\Order;
use Illuminate\Support\Facades\Cache;
module Cacheable
extend ActiveSupport::Concern
def cache_query(prefix, scope, expires_in: 15.minutes)
key = [prefix, cache_version_token(scope)].join("/")