| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- {{-- Вьюха: Список статических страниц сайта в административной панели --}}
- @extends('admin.layout')
- @section('title', 'Страницы')
- @section('content_header')
- <h1 class="m-0">Страницы сайта</h1>
- @stop
- @section('breadcrumb')
- <li class="breadcrumb-item"><a href="{{ route('admin.dashboard') }}">Главная</a></li>
- <li class="breadcrumb-item active">Страницы</li>
- @stop
- @section('content')
- @if(session('success'))
- <div class="alert alert-success alert-dismissible">
- <button type="button" class="close" data-dismiss="alert">×</button>
- {{ session('success') }}
- </div>
- @endif
- <div class="card card-primary card-outline">
- <div class="card-body p-0">
- <table class="table table-hover mb-0">
- <thead>
- <tr>
- <th>Страница</th>
- <th>Slug</th>
- <th>Статус</th>
- <th class="text-right">Действия</th>
- </tr>
- </thead>
- <tbody>
- @foreach($pages as $page)
- <tr>
- <td>{{ $page->title }}</td>
- <td><code>{{ $page->slug }}</code></td>
- <td>
- @if($page->is_active)
- <span class="badge badge-success">Активна</span>
- @else
- <span class="badge badge-secondary">Скрыта</span>
- @endif
- </td>
- <td class="text-right">
- <a href="{{ route('admin.pages.edit', $page) }}" class="btn btn-sm btn-primary">
- <i class="fas fa-edit"></i> Редактировать
- </a>
- </td>
- </tr>
- @endforeach
- </tbody>
- </table>
- </div>
- </div>
- @stop
|