@extends('layouts.app') @php $profile = asset(Storage::url('upload/profile/')); @endphp @section('page-title') {{ __('Client Details') }} @endsection @section('breadcrumb')
| {{ __('Name') }} | {{ __('Assigned To') }} | {{ __('Category') }} | {{ __('Sub Category') }} | {{ __('Tags') }} | {{ __('Stage') }} | {{ __('Created By') }} | {{ __('Created At') }} | @if (Gate::check('show document')){{ __('Action') }} | @endif
|---|---|---|---|---|---|---|---|---|
| {{ $document->name }} | {{ optional($document->AssignTo)->name }} | {{ !empty($document->category) ? $document->category->title : '-' }} | {{ !empty($document->subCategory) ? $document->subCategory->title : '-' }} |
@foreach ($document->tags() as $tag)
{{ $tag->title }} @endforeach |
@if (!empty($document->StageData)) {{ optional($document->StageData)->title }} @endif | {{ !empty($document->createdBy) ? $document->createdBy->name : '' }} | {{ dateFormat($document->created_at) }} | @if ( Gate::check('show document'))@endif |