PHP Class app\http\controllers\ServersController

Inheritance: extends Controller
Show file Open project: ngmy/webloyer

Protected Properties

Property Type Description
$server
$serverForm

Public Methods

Method Description
__construct ( App\Repositories\Server\ServerInterface $server, ServerForm $serverForm ) : void Create a new controller instance.
create ( ) : Response Show the form for creating a new resource.
destroy ( Server $server ) : Response Remove the specified resource from storage.
edit ( Server $server ) : Response Show the form for editing the specified resource.
index ( Illuminate\Http\Request $request ) : Response Display a listing of the resource.
show ( Server $server ) : Response Display the specified resource.
store ( Illuminate\Http\Request $request ) : Response Store a newly created resource in storage.
update ( Illuminate\Http\Request $request, Server $server ) : Response Update the specified resource in storage.

Method Details

__construct() public method

Create a new controller instance.
public __construct ( App\Repositories\Server\ServerInterface $server, ServerForm $serverForm ) : void
$server App\Repositories\Server\ServerInterface
$serverForm App\Services\Form\Server\ServerForm
return void

create() public method

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

destroy() public method

Remove the specified resource from storage.
public destroy ( Server $server ) : Response
$server app\models\Server
return Response

edit() public method

Show the form for editing the specified resource.
public edit ( Server $server ) : Response
$server app\models\Server
return Response

index() public method

Display a listing of the resource.
public index ( Illuminate\Http\Request $request ) : Response
$request Illuminate\Http\Request
return Response

show() public method

Display the specified resource.
public show ( Server $server ) : Response
$server app\models\Server
return Response

store() public method

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

update() public method

Update the specified resource in storage.
public update ( Illuminate\Http\Request $request, Server $server ) : Response
$request Illuminate\Http\Request
$server app\models\Server
return Response

Property Details

$server protected property

protected $server

$serverForm protected property

protected $serverForm