| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 37 | public function build() |
||
| 38 | { |
||
| 39 | return $this->to(config('mail.from.address'), config('mail.from.name')) |
||
| 40 | ->view('frontend.mail.contact') |
||
| 41 | ->text('frontend.mail.contact-text') |
||
| 42 | ->subject(trans('strings.emails.contact.subject', ['app_name' => app_name()])) |
||
| 43 | ->from($this->request->email, $this->request->name) |
||
| 44 | ->replyTo($this->request->email, $this->request->name); |
||
| 45 | } |
||
| 47 |