contact.blade.php 514 B

123456789101112131415161718
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>{{ $details['subject'] }}</title>
  5. </head>
  6. <body>
  7. <?php
  8. $data = $details['data'];
  9. ?>
  10. <div><b>First Name: </b>{{ $data->name_first }}</div>
  11. <div><b>Last Name: </b>{{ $data->name_last }}</div>
  12. <div><b>Email: </b>{{ $data->email }}</div>
  13. <div><b>Phone: </b>{{ $data->phone }}</div>
  14. <div><b>Zip: </b>{{ $data->zip }}</div>
  15. <div><b>Subject: </b>{{ $data->subject }}</div>
  16. <div><b>Message: </b>{{ $data->message }}</div>
  17. </body>
  18. </html>