footer.blade.php 710 B

123456789101112
  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. <li class="nav-item"><a href="{{route('contact-data')}}" class="nav-link px-2 text-muted">Оставить отзыв</a></li>
  9. </ul>
  10. <p class="text-center text-muted">© 2022 Company, Inc</p>
  11. </footer>
  12. </div>