App\Http\Controllers\Quarx\FaqController::all PHP 메소드

all() 공개 메소드

Display all Faq entries.
public all ( ) : Response
리턴 Response
    public function all()
    {
        $faqs = $this->faqRepository->published();
        if (empty($faqs)) {
            abort(404);
        }
        return view('quarx-frontend::faqs.all')->with('faqs', $faqs);
    }
FaqController