File manager - Edit - /var/www/html/homologBancodetalentos/app/Mail/TalentBank/WelcomeCandidateMail.php
Back
<?php namespace App\Mail\TalentBank; use App\Models\TalentBank\Candidate; use Illuminate\Bus\Queueable; use Illuminate\Mail\Mailable; use Illuminate\Mail\Mailables\Content; use Illuminate\Mail\Mailables\Envelope; use Illuminate\Queue\SerializesModels; class WelcomeCandidateMail extends Mailable { use Queueable, SerializesModels; public Candidate $candidate; public function __construct(Candidate $candidate) { $this->candidate = $candidate; } public function envelope(): Envelope { return new Envelope( subject: 'Bem-vindo ao Banco de Talentos de Angra dos Reis!', ); } public function content(): Content { return new Content( view: 'mail.welcome_candidate', with: ['candidate' => $this->candidate], ); } public function attachments(): array { return []; } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.28 | Generation time: 0.02 |
proxy
|
phpinfo
|
Settings