@extends('layouts.app') @section('title', trans('feature.show') . ' | ' . $feature->name . ' | ' . $feature->project->name) @section('content') @include('features.partials.breadcrumb')

{!! html_link_to_route('features.create', trans('feature.create'), [$feature->project_id], ['class' => 'btn btn-success','icon' => 'plus']) !!} {!! link_to_route('features.edit', trans('feature.edit'), [$feature->id], ['class' => 'btn btn-warning']) !!} {!! link_to_route('projects.features', trans('feature.back_to_index'), [$feature->project_id, '#' . $feature->id], ['class' => 'btn btn-default']) !!}
{{ $feature->name }} {{ trans('feature.show') }}

@include('features.partials.feature-show')
@include('features.partials.feature-tasks-operation')
@include('features.partials.feature-tasks') @endsection @if (Request::get('action') == 'task_edit' && $editableTask) @section('ext_css') {!! Html::style(url('assets/css/plugins/rangeslider.css')) !!} @endsection @section('ext_js') {!! Html::script(url('assets/js/plugins/rangeslider.min.js')) !!} @endsection @section('script') @endsection @endif