Files
shipping-portal/app/Classes/General/Interfaces/Notifiable.php
T
omair saleh ac41229f8b notifiable
2022-03-12 17:20:32 +08:00

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;
}