2024-04-19 10:27:36 +02:00

13 lines
155 B
PHP

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