PHP Class App\Http\Controllers\ProjectsController

Inheritance: extends Controller
Afficher le fichier Open project: ngmy/webloyer Class Usage Examples

Protected Properties

Свойство Type Description
$project
$projectForm
$recipe
$server
$user

Méthodes publiques

Méthode Description
__construct ( App\Repositories\Project\ProjectInterface $project, ProjectForm $projectForm, App\Repositories\Recipe\RecipeInterface $recipe, App\Repositories\Server\ServerInterface $server, App\Repositories\User\UserInterface $user ) : void Create a new controller instance.
create ( ) : Response Show the form for creating a new resource.
destroy ( Project $project ) : Response Remove the specified resource from storage.
edit ( Project $project ) : Response Show the form for editing the specified resource.
index ( Illuminate\Http\Request $request ) : Response Display a listing of the resource.
show ( Project $project ) : Response Display the specified resource.
store ( Illuminate\Http\Request $request ) : Response Store a newly created resource in storage.
update ( Illuminate\Http\Request $request, Project $project ) : Response Update the specified resource in storage.

Method Details

__construct() public méthode

Create a new controller instance.
public __construct ( App\Repositories\Project\ProjectInterface $project, ProjectForm $projectForm, App\Repositories\Recipe\RecipeInterface $recipe, App\Repositories\Server\ServerInterface $server, App\Repositories\User\UserInterface $user ) : void
$project App\Repositories\Project\ProjectInterface
$projectForm App\Services\Form\Project\ProjectForm
$recipe App\Repositories\Recipe\RecipeInterface
$server App\Repositories\Server\ServerInterface
$user App\Repositories\User\UserInterface
Résultat void

create() public méthode

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

destroy() public méthode

Remove the specified resource from storage.
public destroy ( Project $project ) : Response
$project app\models\Project
Résultat Response

edit() public méthode

Show the form for editing the specified resource.
public edit ( Project $project ) : Response
$project app\models\Project
Résultat Response

index() public méthode

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

show() public méthode

Display the specified resource.
public show ( Project $project ) : Response
$project app\models\Project
Résultat Response

store() public méthode

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

update() public méthode

Update the specified resource in storage.
public update ( Illuminate\Http\Request $request, Project $project ) : Response
$request Illuminate\Http\Request
$project app\models\Project
Résultat Response

Property Details

$project protected_oe property

protected $project

$projectForm protected_oe property

protected $projectForm

$recipe protected_oe property

protected $recipe

$server protected_oe property

protected $server

$user protected_oe property

protected $user