Files
portal/app/Classes/General/Interfaces/Notifiable.php
T
glovetleong f8a985035e notification
2022-02-18 21:57:25 +08:00

15 lines
256 B
PHP

<?php
namespace App\Classes\General\Interfaces;
use Illuminate\Database\Eloquent\Relations\MorphMany;
interface Notifiable
{
public function subject(): morphMany;
public function target(): morphMany;
public function causer(): morphMany;
}