File: /home/marketing.cfbon.ru/public_html/resources/views/site/menu/categories/index.blade.php
@extends('layouts.main')
@section('title', 'Админ-панель')
@section('title_button')
    <div class="col-md-1">
        <a href="{{ route('site.menu.categories.create')  }}" class="btn btn-danger">Создать</a>
    </div>
@endsection
@section('content')
    <div class="container mt-3 ms-2">
        <div class="row">
            <div class="col-md-11">
                <table class="table table-hover">
                    <thead class="bg-light">
                    <tr>
                        <th scope="col">Порядок сортировки</th>
                        <th scope="col">Название</th>
                        <th scope="col">Действие</th>
                    </tr>
                    </thead>
                    <tbody>
                    @foreach ($categories as $category)
                        <tr>
                            <td>{{ $category->display_order }}</td>
                            <td>{{  $category->name }}</td>
                            <td>
                                <div class="d-flex">
                                    <a href="{{ route('site.menu.categories.edit', $category->id) }}" class="btn btn-outline-danger btn-sm me-2">Редактировать</a>
                                    <form action="{{ route('site.menu.categories.destroy', $category->id) }}" method="POST" class="d-inline">
                                        @csrf
                                        @method('DELETE')
                                        <button type="submit" class="btn btn-outline-secondary btn-sm" onclick="return confirm('Вы уверены?')">Удалить</button>
                                    </form>
                                </div>
                            </td>
                        </tr>
                    @endforeach
                    </tbody>
                </table>
            </div>
        </div>
    </div>
@endsection