header.blade.php 667 B

123456789101112
  1. <header style="background-color: #3490dc; padding: 15px 0;">
  2. <div class="container" style="display: flex; justify-content: space-between; align-items: center; background-color: transparent; box-shadow: none;">
  3. <div class="logo" style="color: white; font-size: 24px; font-weight: bold;">
  4. Laravel App
  5. </div>
  6. <nav>
  7. <a href="{{ route('form.show') }}" style="color: white; margin-left: 20px; text-decoration: none;">Форма</a>
  8. <a href="{{ route('data.show') }}" style="color: white; margin-left: 20px; text-decoration: none;">Просмотр данных</a>
  9. </nav>
  10. </div>
  11. </header>