<?php namespace App\Library\Traits; trait HasModelCacheIdentity { public function cacheKey(): string { return 'model:' . class_basename(static::class) . ':' . $this->getUid(); } }