@extends('layouts.app') @section('title', trans('project.features')) @section('content') @include('projects.partials.breadcrumb',['title' => trans('project.features')])
| {{ trans('app.table_no') }} | {{ trans('feature.name') }} | {{ trans('feature.tasks_count') }} | {{ trans('feature.progress') }} | {{ trans('app.action') }} | @forelse($project->features as $feature)
|---|---|---|---|---|
| {{ $feature->name }} | ||||
| {{ trans('feature.empty') }} | ||||
| {!! html_link_to_route('features.create', trans('feature.create'), [$project->id], ['class' => 'btn btn-primary','icon' => 'plus']) !!} | ||||