@extends('layouts.frontend') @section('content')
{{ trans('cruds.document.fields.id') }} | {{ trans('cruds.document.fields.project') }} | {{ trans('cruds.document.fields.document_file') }} | {{ trans('cruds.document.fields.name') }} | {{ trans('cruds.document.fields.description') }} | |
---|---|---|---|---|---|
{{ $document->id ?? '' }} | {{ $document->project->name ?? '' }} | @if($document->document_file) {{ trans('global.view_file') }} @endif | {{ $document->name ?? '' }} | {{ $document->description ?? '' }} | @can('document_show') {{ trans('global.view') }} @endcan @can('document_edit') {{ trans('global.edit') }} @endcan @can('document_delete') @endcan |