You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
437 B
17 lines
437 B
@extends('layouts.app')
|
|
|
|
@section('title', trans('feature.show'))
|
|
|
|
@section('content')
|
|
@include('features.partials.breadcrumb')
|
|
|
|
<h1 class="page-header">{{ $feature->name }} <small>{{ trans('feature.show') }}</small></h1>
|
|
<div class="row">
|
|
<div class="col-md-4">
|
|
@include('features.partials.feature-show')
|
|
</div>
|
|
<div class="col-sm-8">
|
|
@include('features.partials.feature-tasks')
|
|
</div>
|
|
</div>
|
|
@endsection
|