index.blade.php 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {{-- Вьюха: Список статических страниц сайта в административной панели --}}
  2. @extends('admin.layout')
  3. @section('title', 'Страницы')
  4. @section('content_header')
  5. <h1 class="m-0">Страницы сайта</h1>
  6. @stop
  7. @section('breadcrumb')
  8. <li class="breadcrumb-item"><a href="{{ route('admin.dashboard') }}">Главная</a></li>
  9. <li class="breadcrumb-item active">Страницы</li>
  10. @stop
  11. @section('content')
  12. @if(session('success'))
  13. <div class="alert alert-success alert-dismissible">
  14. <button type="button" class="close" data-dismiss="alert">&times;</button>
  15. {{ session('success') }}
  16. </div>
  17. @endif
  18. <div class="card card-primary card-outline">
  19. <div class="card-body p-0">
  20. <table class="table table-hover mb-0">
  21. <thead>
  22. <tr>
  23. <th>Страница</th>
  24. <th>Slug</th>
  25. <th>Статус</th>
  26. <th class="text-right">Действия</th>
  27. </tr>
  28. </thead>
  29. <tbody>
  30. @foreach($pages as $page)
  31. <tr>
  32. <td>{{ $page->title }}</td>
  33. <td><code>{{ $page->slug }}</code></td>
  34. <td>
  35. @if($page->is_active)
  36. <span class="badge badge-success">Активна</span>
  37. @else
  38. <span class="badge badge-secondary">Скрыта</span>
  39. @endif
  40. </td>
  41. <td class="text-right">
  42. <a href="{{ route('admin.pages.edit', $page) }}" class="btn btn-sm btn-primary">
  43. <i class="fas fa-edit"></i> Редактировать
  44. </a>
  45. </td>
  46. </tr>
  47. @endforeach
  48. </tbody>
  49. </table>
  50. </div>
  51. </div>
  52. @stop