PHP Class App\Http\Controllers\Admin\UsersController

Inheritance: extends App\Http\Controllers\Admin\CrudController
Afficher le fichier Open project: appzcoder/laravel-admin

Méthodes publiques

Méthode Description
create ( ) : void Show the form for creating a new resource.
destroy ( integer $id ) : void Remove the specified resource from storage.
edit ( integer $id ) : void Show the form for editing the specified resource.
index ( ) : void Display a listing of the resource.
show ( integer $id ) : void Display the specified resource.
store ( Illuminate\Http\Request $request ) : void Store a newly created resource in storage.
update ( integer $id, Illuminate\Http\Request $request ) : void Update the specified resource in storage.

Method Details

create() public méthode

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

destroy() public méthode

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

edit() public méthode

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

index() public méthode

Display a listing of the resource.
public index ( ) : void
Résultat void

show() public méthode

Display the specified resource.
public show ( integer $id ) : void
$id integer
Résultat void

store() public méthode

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

update() public méthode

Update the specified resource in storage.
public update ( integer $id, Illuminate\Http\Request $request ) : void
$id integer
$request Illuminate\Http\Request
Résultat void