@extends('layouts.project') @section('subtitle', __('issue.detail')) @section('action-buttons') @can('create', new App\Entities\Projects\Issue) {!! html_link_to_route('projects.issues.create', __('issue.create'), $project, ['class' => 'btn btn-success', 'icon' => 'plus']) !!} @endcan @endsection @section('content-project')
| {{ __('issue.title') }} | {{ $issue->title }} |
|---|---|
| {{ __('issue.body') }} | {{ $issue->body }} |
| {{ __('issue.priority') }} | {!! $issue->priority_label !!} |
| {{ __('issue.pic') }} | {{ $issue->pic->name }} |
| {{ __('app.created_by') }} | {{ $issue->creator->name }} |