PHP 클래스 App\Http\Controllers\Admin\PermissionsController

상속: extends App\Http\Controllers\Controller
파일 보기 프로젝트 열기: appzcoder/laravel-admin

공개 메소드들

메소드 설명
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.

메소드 상세

create() 공개 메소드

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

destroy() 공개 메소드

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

edit() 공개 메소드

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

index() 공개 메소드

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

show() 공개 메소드

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

store() 공개 메소드

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

update() 공개 메소드

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