. */ namespace App\Mail; class NewFollower extends BaseNotification { /** * @inheritdoc */ public function build() { $creatorName = $this->initiatingUser->display_name; return $this->renderEmail( 'new-follower', "{$creatorName} is now following you on Pony.fm!", [ 'creatorName' => $creatorName, 'creatorBio' => $this->initiatingUser->bio, ]); } }