2024-04-21 14:42:52 +02:00

13 lines
155 B
PHP

<?php
namespace App\Models\Recipients;
use Illuminate\Notifications\Notifiable;
abstract class Recipient
{
use Notifiable;
protected $email;
}