| 1 | <?php |
||
| 11 | class EmailAdminSummary extends Mailable implements ShouldQueue |
||
| 12 | { |
||
| 13 | use Queueable, SerializesModels; |
||
| 14 | |||
| 15 | public $visits; |
||
| 16 | public $records; |
||
| 17 | public $destroyed; |
||
| 18 | public $notes; |
||
| 19 | public $monday; |
||
| 20 | public $dutyLists; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * EmailAdminSummary constructor. |
||
| 24 | * |
||
| 25 | * @param array $array |
||
| 26 | */ |
||
| 27 | public function __construct(array $array) |
||
| 36 | |||
| 37 | /** |
||
| 38 | * Build the message. |
||
| 39 | * |
||
| 40 | * @return $this |
||
| 41 | */ |
||
| 42 | public function build() |
||
| 47 | } |
||
| 48 |