PHP Class Yab\Quarx\Controllers\WidgetsController

Inheritance: extends QuarxController
Afficher le fichier Open project: YABhq/Quarx

Méthodes publiques

Méthode Description
__construct ( WidgetRepository $widgetsRepo )
create ( ) : Response Show the form for creating a new Widgets.
destroy ( integer $id ) : Response Remove the specified Widgets from storage.
edit ( integer $id ) : Response Show the form for editing the specified Widgets.
index ( ) : Response Display a listing of the Widgets.
search ( Illuminate\Http\Request $request ) : Response Search.
store ( Illuminate\Http\Request $request ) : Response Store a newly created Widgets in storage.
update ( integer $id, WidgetsRequest $request ) : Response Update the specified Widgets in storage.

Method Details

__construct() public méthode

public __construct ( WidgetRepository $widgetsRepo )
$widgetsRepo Yab\Quarx\Repositories\WidgetRepository

create() public méthode

Show the form for creating a new Widgets.
public create ( ) : Response
Résultat Response

destroy() public méthode

Remove the specified Widgets from storage.
public destroy ( integer $id ) : Response
$id integer
Résultat Response

edit() public méthode

Show the form for editing the specified Widgets.
public edit ( integer $id ) : Response
$id integer
Résultat Response

index() public méthode

Display a listing of the Widgets.
public index ( ) : Response
Résultat Response

store() public méthode

Store a newly created Widgets in storage.
public store ( Illuminate\Http\Request $request ) : Response
$request Illuminate\Http\Request
Résultat Response

update() public méthode

Update the specified Widgets in storage.
public update ( integer $id, WidgetsRequest $request ) : Response
$id integer
$request Yab\Quarx\Requests\WidgetsRequest
Résultat Response