mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/portal.git
synced 2026-08-23 22:44:19 +00:00
15 lines
256 B
PHP
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;
|
|
} |