@extends('layouts.app') @section('title', trans('project.features')) @section('content') @include('projects.partials.breadcrumb',['title' => trans('project.features')])

{{ $project->name }} {{ trans('project.features') }}

@include('projects.partials.nav-tabs')
@forelse($project->features as $feature) @empty @endforelse
{{ trans('app.table_no') }} {{ trans('feature.name') }} {{ trans('feature.tasks_count') }} {{ trans('feature.progress') }} {{ trans('app.action') }}
{{ $feature->name }}
{{ trans('feature.empty') }}
{!! html_link_to_route('features.create', trans('feature.create'), [$project->id], ['class' => 'btn btn-primary','icon' => 'plus']) !!}
@endsection