PHP 클래스 Yab\Quarx\Controllers\FAQController

상속: extends QuarxController
파일 보기 프로젝트 열기: YABhq/Quarx

공개 메소드들

메소드 설명
__construct ( FAQRepository $faqRepo )
create ( ) : Response Show the form for creating a new FAQ.
destroy ( integer $id ) : Response Remove the specified FAQ from storage.
edit ( integer $id ) : Response Show the form for editing the specified FAQ.
index ( ) : Response Display a listing of the FAQ.
search ( Illuminate\Http\Request $request ) : Response Search.
store ( Illuminate\Http\Request $request ) : Response Store a newly created FAQ in storage.
update ( integer $id, FAQRequest $request ) : Response Update the specified FAQ in storage.

메소드 상세

__construct() 공개 메소드

public __construct ( FAQRepository $faqRepo )
$faqRepo Yab\Quarx\Repositories\FAQRepository

create() 공개 메소드

Show the form for creating a new FAQ.
public create ( ) : Response
리턴 Response

destroy() 공개 메소드

Remove the specified FAQ from storage.
public destroy ( integer $id ) : Response
$id integer
리턴 Response

edit() 공개 메소드

Show the form for editing the specified FAQ.
public edit ( integer $id ) : Response
$id integer
리턴 Response

index() 공개 메소드

Display a listing of the FAQ.
public index ( ) : Response
리턴 Response

store() 공개 메소드

Store a newly created FAQ in storage.
public store ( Illuminate\Http\Request $request ) : Response
$request Illuminate\Http\Request
리턴 Response

update() 공개 메소드

Update the specified FAQ in storage.
public update ( integer $id, FAQRequest $request ) : Response
$id integer
$request Yab\Quarx\Requests\FAQRequest
리턴 Response