PHP 클래스 Yab\Quarx\Controllers\PagesController

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

공개 메소드들

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

메소드 상세

__construct() 공개 메소드

public __construct ( PageRepository $pagesRepo )
$pagesRepo Yab\Quarx\Repositories\PageRepository

create() 공개 메소드

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

destroy() 공개 메소드

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

edit() 공개 메소드

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

index() 공개 메소드

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

store() 공개 메소드

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

update() 공개 메소드

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