13 lines
155 B
PHP
13 lines
155 B
PHP
<?php
|
|
|
|
namespace App\Models\Recipients;
|
|
|
|
use Illuminate\Notifications\Notifiable;
|
|
|
|
abstract class Recipient
|
|
{
|
|
use Notifiable;
|
|
|
|
protected $email;
|
|
}
|