POPEndPointController
extends Controller
in package
Class POPEndPointController
Manages operations for POP End Points.
Table of Contents
Properties
Methods
- __construct() : mixed
- create() : Response
- Show the form for creating a new resource.
- destroy() : RedirectResponse
- Remove the specified resource from storage.
- edit() : Response
- Show the form for editing the specified resource.
- index() : Response
- Display a listing of the resource.
- show() : View
- Show the specified resource.
- store() : RedirectResponse
- Store a newly created resource in storage.
- update() : RedirectResponse
- Update the specified resource in storage.
Properties
$popService
private
POPEndPointService
$popService
Methods
__construct()
public
__construct(POPEndPointService $popService) : mixed
Parameters
- $popService : POPEndPointService
create()
Show the form for creating a new resource.
public
create() : Response
Return values
Responsedestroy()
Remove the specified resource from storage.
public
destroy(int $id) : RedirectResponse
Parameters
- $id : int
Return values
RedirectResponseedit()
Show the form for editing the specified resource.
public
edit(int $id) : Response
Parameters
- $id : int
Return values
Responseindex()
Display a listing of the resource.
public
index(Request $request) : Response
Parameters
- $request : Request
Return values
Responseshow()
Show the specified resource.
public
show(int $id) : View
Parameters
- $id : int
Return values
Viewstore()
Store a newly created resource in storage.
public
store(StorePOPEndPointRequest $request) : RedirectResponse
Parameters
- $request : StorePOPEndPointRequest
Return values
RedirectResponseupdate()
Update the specified resource in storage.
public
update(UpdatePOPEndPointRequest $request, int $id) : RedirectResponse
Parameters
- $request : UpdatePOPEndPointRequest
- $id : int