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.
 
 
 
 
 

15 lines
428 B

@extends('layouts.app')
@section('title', trans('feature.show'))
@section('content')
<h1 class="page-header">{{ $feature->name }} <small>{{ trans('feature.show') }}</small></h1>
<div class="row">
<div class="col-md-6">
@include('features.partials.feature-show')
</div>
<div class="col-sm-6">
@include('projects.partials.project-show', ['project' => $feature->project])
</div>
</div>
@endsection