File: /home/marketing.cfbon.ru/public_html/app/Http/Controllers/Site/PhotoGalleryController.php
<?php
namespace App\Http\Controllers\Site;
use App\Http\Controllers\Controller;
use App\Http\Requests\Site\GalleryRequest;
use App\Models\Gallery;
use Illuminate\Http\RedirectResponse;
use Illuminate\Http\Request;
use Illuminate\View\View;
class PhotoGalleryController extends Controller
{
    public function index() : View
    {
        $gallery = Gallery::all();
        return view('site.photo-gallery.index', compact('gallery'));
    }
    public function create() : View
    {
        return view('site.photo-gallery.create');
    }
    public function store(GalleryRequest $request) : RedirectResponse
    {
        Gallery::create([
            'img' => $request->file('img'),
            'is_active' => $request->input('is_active'),
        ]);
        return redirect()->route('site.photo-gallery.index')->with('success', 'Фото успешно добавлено');
    }
    public function edit(string $id) : View
    {
        $image = Gallery::findOrFail($id);
        return view('site.photo-gallery.edit', compact('image'));
    }
    public function update(GalleryRequest $request, string $id) : RedirectResponse
    {
        $image = Gallery::findOrFail($id);
        $image->update($request->validated());
        return redirect()->route('site.photo-gallery.index')->with('success', 'Фото успешно изменено');
    }
    public function destroy(string $id)
    {
        $image = Gallery::findOrFail($id);
        $image->delete();
        return redirect()->route('site.photo-gallery.index')->with('success', 'Фото успешно удалено');
    }
}