PHP Class App\Http\Controllers\Admin\UsersController

Inheritance: extends App\Http\Controllers\Admin\CrudController
Show file Open project: appzcoder/laravel-admin

Public Methods

Method 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 method

Show the form for creating a new resource.
public create ( ) : void
return void

destroy() public method

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

edit() public method

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

index() public method

Display a listing of the resource.
public index ( ) : void
return void

show() public method

Display the specified resource.
public show ( integer $id ) : void
$id integer
return void

store() public method

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

update() public method

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