footer.blade.php 564 B

1234567891011
  1. @section('footer')
  2. <div class="container">
  3. <footer class="py-3 my-4">
  4. <ul class="nav justify-content-center border-bottom pb-3 mb-3">
  5. <li class="nav-item"><a href="{{route('home')}}" class="nav-link px-2 text-muted">Home</a></li>
  6. <li class="nav-item"><a href="{{route('about')}}" class="nav-link px-2 text-muted">О нас</a></li>
  7. <li class="nav-item"><a href="{{route('contact')}}" class="nav-link px-2 text-muted">Контакты</a></li>
  8. </ul>
  9. <p class="text-center text-muted">© 2022 Company, Inc</p>
  10. </footer>
  11. </div>