| 1 | <?php |
||
| 11 | class EmailSupervisorReminder extends Mailable implements ShouldQueue |
||
| 12 | { |
||
| 13 | use Queueable, SerializesModels; |
||
| 14 | |||
| 15 | public $notes; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Create a new message instance. |
||
| 19 | * |
||
| 20 | * @param Collection $note |
||
| 21 | */ |
||
| 22 | public function __construct(Collection $note) |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Build the message. |
||
| 29 | * |
||
| 30 | * @return $this |
||
| 31 | */ |
||
| 32 | public function build() |
||
| 37 | } |
||
| 38 |