for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Mail;
use Illuminate\Mail\Mailable;
class RecurringPaymentFailed extends Mailable
{
/**
* Build the message.
* @return $this
*/
public function build()
return $this->view('emails.recurringPayments.recurringPaymentFailed',[
'message' => 'We are going to change your card',
]);
}