App\Http\Controllers\Quarx\GalleryController::all PHP Метод

all() публичный Метод

Display page list.
public all ( ) : Response
Результат Response
    public function all()
    {
        $images = $this->imageRepository->publishedAndPaginated();
        $tags = $this->imageRepository->allTags();
        if (empty($images)) {
            abort(404);
        }
        return view('quarx-frontend::gallery.all')->with('tags', $tags)->with('images', $images);
    }
GalleryController