HEX
Server: LiteSpeed
System: Linux php-prod-3.spaceapp.ru 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: sarli3128 (1010)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /home/marketing.cfbon.ru/public_html/resources/views/site/menu/products/index.blade.php
@extends('layouts.main')

@section('title', 'Товары')

@section('title_button')
    <div class="col-md-1">
        <a href="{{ route('site.menu.products.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">
                @foreach($productCategories as $category)
                    <table class="table table-hover">
                        <thead class="bg-light">
                        <tr>
                            <th colspan="6" class="fs-5">{{ $category->name }}</th>
                        </tr>
                        <tr>
                            <th scope="col">Картинка</th>
                            <th scope="col">Название</th>
                            <th scope="col">Характеристики</th>
                            <th scope="col">Описание</th>
                            <th scope="col">Только в кофебоне</th>
                            <th scope="col">Действия</th>
                        </tr>
                        </thead>
                        <tbody>
                        @foreach ($category->products as $product)
                            <tr data-id="{{ $product->id }}">
                                <td>
                                    @if($product->img)
                                        <img src="{{ $product->img_url }}" alt="Фото товара" class="rounded" style="max-width: 60px; max-height: 60px;">
                                    @else
                                        <span class="text-muted">Нет фото</span>
                                    @endif
                                </td>
                                <td>{{ $product->title }}</td>
                                <td>
                                    @if($product->has_volumes)
                                        <ul class="list-unstyled mb-0 small">
                                            @foreach ($product->volumes as $volume)
                                                <li class="mb-2">
                                                    <div>
                                                        <span class="text-muted">Объём:</span>
                                                        {{ $volume->title ?? '–' }}
                                                    </div>
                                                    <div>
                                                        <span class="text-muted">Цена:</span>
                                                        {{ number_format($volume->pivot->price, 0, ',', ' ') }} ₽
                                                    </div>
                                                </li>
                                            @endforeach
                                        </ul>
                                    @else
                                        <div class="small">
                                            <div class="mb-1">
                                                <span class="text-muted">Размер:</span>
                                                {{ $product->size ?? '–' }}
                                            </div>
                                            <div>
                                                <span class="text-muted">Цена:</span>
                                                {{ $product->price ? number_format($product->price, 0, ',', ' ') . ' ₽' : '–' }}
                                            </div>
                                        </div>
                                    @endif
                                </td>
                                <td>{{ $product->description }}</td>
                                <td>{{ $product->is_only_here ? 'Да' : 'Нет' }}</td>
                                <td>
                                    <div class="d-flex">
                                        <a href="{{ route('site.menu.products.edit', $product->id) }}"
                                           class="btn btn-outline-danger btn-sm me-2">Редактировать</a>
                                        <form action="{{ route('site.menu.products.destroy', $product->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>
                @endforeach

            </div>
        </div>
    </div>
@endsection

@section('scripts')
    <script>
        window.Laravel = {
            csrfToken: '{{ csrf_token() }}'
        };
    </script>
    <script src="{{ asset('adminLTE/dist/js/products.js') }}"></script>
@endsection