PHP Class Yab\Quarx\Controllers\LinksController

Inheritance: extends QuarxController
ファイルを表示 Open project: YABhq/Quarx

Public Methods

Method Description
__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.

Method Details

__construct() public method

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

create() public method

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

destroy() public method

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

edit() public method

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

index() public method

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

store() public method

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

update() public method

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