love_php/app/Contracts/Previewable.php

12 lines
200 B
PHP
Raw Permalink Normal View History

2026-04-02 09:20:51 +08:00
<?php
namespace App\Contracts;
use Illuminate\Database\Eloquent\Relations\MorphMany;
interface Previewable
{
public function previews(): MorphMany;
// public function primaryId(): string;
}