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
388 B

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