REBELinBLUE\Deployer\Http\Controllers\Admin\TemplateController::show PHP Метод

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

Show the template configuration.
public show ( integer $template_id ) : Illuminate\View\View
$template_id integer
Результат Illuminate\View\View
    public function show($template_id)
    {
        $template = $this->templateRepository->getById($template_id);
        return view('admin.templates.details', ['breadcrumb' => [['url' => route('admin.templates.index'), 'label' => Lang::get('templates.label')]], 'title' => $template->name, 'sharedFiles' => $template->sharedFiles, 'configFiles' => $template->configFiles, 'variables' => $template->variables, 'project' => $template, 'target_type' => 'template', 'target_id' => $template->id, 'route' => 'admin.templates.commands.step']);
    }