Modules\Doptor\TranslationManager\Controllers\Backend\LanguageManagerController::edit PHP Method

edit() public method

Show the form for editing the specified resource.
public edit ( integer $id ) : Response
$id integer
return Response
    public function edit($id)
    {
        $this->layout->title = 'Edit Language';
        $this->layout->content = View::make('language_manager::create_edit')->with('language', TranslationLanguage::findOrFail($id));
    }