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.
21 lines
447 B
21 lines
447 B
@extends('layouts.app')
|
|
|
|
@section('title')
|
|
@yield('subtitle', __('project.detail')) - {{ $project->name }}
|
|
@endsection
|
|
|
|
@section('content')
|
|
@include('projects.partials.breadcrumb')
|
|
|
|
<h1 class="page-header">
|
|
<div class="pull-right">
|
|
@yield('action-buttons')
|
|
</div>
|
|
{{ $project->name }} <small>@yield('subtitle', __('project.detail'))</small>
|
|
</h1>
|
|
|
|
@include('projects.partials.nav-tabs')
|
|
|
|
@yield('content-project')
|
|
|
|
@endsection
|