app.blade.php 1.2 KB

123456789101112131415161718192021222324252627282930
  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>@yield('title', 'Web-Приложение')</title>
  7. <style>
  8. body { font-family: sans-serif; margin: 0; padding: 0; background-color: #f4f7f6; }
  9. .container { max-width: 1200px; margin: 20px auto; padding: 20px; background-color: white; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
  10. h1 { color: #333; border-bottom: 2px solid #eee; padding-bottom: 10px; }
  11. .alert-success { background-color: #d4edda; color: #155724; border: 1px solid #c3e6cb; padding: 10px; margin-bottom: 15px; border-radius: 4px; }
  12. .error-list { color: #721c24; background-color: #f8d7da; border: 1px solid #f5c6cb; padding: 10px; margin-bottom: 15px; border-radius: 4px; }
  13. table { width: 100%; border-collapse: collapse; margin-top: 20px; }
  14. th, td { border: 1px solid #ddd; padding: 8px; text-align: left; }
  15. th { background-color: #f2f2f2; }
  16. </style>
  17. </head>
  18. <body>
  19. @include('partials.header')
  20. <div class="container">
  21. @yield('content')
  22. </div>
  23. @include('partials.footer')
  24. </body>
  25. </html>