File: //home/marketing.cfbon.ru/public_html/resources/views/site/photo-gallery/index.blade.php
@extends('layouts.main')
@section('title', 'Галерея фото')
@section('title_button')
    <div class="col-md-1">
        <a href="{{ route('site.photo-gallery.create') }}" class="btn btn-danger">Добавить</a>
    </div>
@endsection
@section('content')
    <div class="position-relative">
        <div class="container mt-3 ms-2 mb-3">
            <div class="row">
                @foreach($gallery as $image)
                    <div class="col-sm-6 col-md-4 col-lg-3 mb-4">
                        <div class="d-flex align-items-center justify-content-between mb-1">
                                                            <span class="badge {{ $image->is_active ? 'bg-danger' : 'bg-secondary' }} py-2 px-3 d-flex align-items-center fw-bold">
                                {{ $image->is_active ? 'Активно' : 'Не активно' }}
                            </span>
                            <div class="d-flex gap-1">
                                <a href="{{ route('site.photo-gallery.edit', $image->id) }}"
                                   class="btn btn-sm btn-outline-danger d-flex align-items-center justify-content-center"
                                   style="width: 36px; height: 36px;">
                                    <i class="bi bi-pencil"></i>
                                </a>
                                <form action="{{ route('site.photo-gallery.destroy', $image->id) }}" method="POST" class="d-inline">
                                    @csrf
                                    @method('DELETE')
                                    <button type="submit"
                                            class="btn btn-sm btn-outline-secondary d-flex align-items-center justify-content-center"
                                            style="width: 36px; height: 36px;"
                                            onclick="return confirm('Вы уверены?')">
                                        <i class="bi bi-trash"></i>
                                    </button>
                                </form>
                            </div>
                        </div>
                        <div class="card shadow-sm border-0">
                            <div class="position-relative">
                                <img src="{{ $image->img_url }}"
                                     alt="Баннер"
                                     class="card-img-top" style="aspect-ratio: 1 / 1; object-fit: cover;">
                            </div>
                        </div>
                    </div>
                @endforeach
            </div>
        </div>
    </div>
@endsection