2024-04-17 20:22:30 +02:00

13 lines
155 B
PHP

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