blade-exception-utf8.blade.php 400 B

12345678910111213141516171819
  1. <!DOCTYPE html>
  2. <html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <title>Laravel</title>
  7. </head>
  8. <body>
  9. àààààààà
  10. {{ throw new Exception }}
  11. àààààààà
  12. <ul>
  13. @foreach ([1, 2, 3] as $i => $test)
  14. <li>{{ $test }}</li>
  15. @endforeach
  16. </ul>
  17. </body>
  18. </html>