generic.blade.php 351 B

12345678910111213141516
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>{{ $details['subject'] }}</title>
  5. </head>
  6. <body>
  7. <?php
  8. $excludes = ['form_name', '_token', 'g-recaptcha-response'];
  9. foreach($excludes as $key){
  10. unset($details['data']->{$key});
  11. }
  12. $data = $details['data'];
  13. ?>
  14. <?php parseRender($details) ?>
  15. </body>
  16. </html>