@extends('admin.admin_master') @section('admin')

Document Details

Back
{{ $document->title }}

Description: {{ $document->description }}

Created By: {{ $document->creator ? $document->creator->name : '-' }}

Workflow: {{ $document->workflow ? $document->workflow->name : '-' }}

Status: {{ $document->status }}

Created At: {{ $document->created_at }}

@if($document->file_path)

File: Download

@endif @if($document->meta_tags && is_array($document->meta_tags))

Meta Tags:

    @foreach($document->meta_tags as $key => $value)
  • {{ $key }}: {{ $value }}
  • @endforeach
@endif
@endsection