+
+ if ($deletable instanceof Entity) {
+ return "Deletion ({$this->id}) for {$deletable->getType()} ({$deletable->id}) {$deletable->name}";
+ }
+
+ return "Deletion ({$this->id})";
+ }
+
+ /**
+ * Get a URL for this specific deletion.
+ */
+ public function getUrl(string $path = 'restore'): string
+ {
+ return url("/settings/recycle-bin/{$this->id}/" . ltrim($path, '/'));