App\Http\Controllers\ClientsController::edit PHP Метод

edit() публичный Метод

Show the form for editing the specified resource.
public edit ( integer $id ) : Response
$id integer
Результат Response
    public function edit($id)
    {
        return view('clients.edit')->withClient($this->clients->find($id))->withUsers($this->users->getAllUsersWithDepartments())->withIndustries($this->clients->listAllIndustries());
    }