PHP 클래스 Yab\Quarx\Controllers\LinksController

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

공개 메소드들

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

메소드 상세

__construct() 공개 메소드

public __construct ( LinkRepository $linksRepo )
$linksRepo Yab\Quarx\Repositories\LinkRepository

create() 공개 메소드

Show the form for creating a new Links.
public create ( Illuminate\Http\Request $request ) : Response
$request Illuminate\Http\Request
리턴 Response

destroy() 공개 메소드

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

edit() 공개 메소드

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

index() 공개 메소드

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

store() 공개 메소드

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

update() 공개 메소드

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