mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 20:43:56 +00:00
15 lines
248 B
PHP
15 lines
248 B
PHP
<?php
|
|
|
|
namespace App\Classes\General\Interfaces;
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Relations\MorphTo;
|
|
|
|
interface Notifiable
|
|
{
|
|
public function subject(): MorphTo;
|
|
|
|
public function target(): MorphTo;
|
|
|
|
public function causer(): MorphTo;
|
|
} |