|
{{ $document->title }} |
{{ $document->created_at ? date(config('choicescrm.date_format_forms'), strtotime($document->created_at)) : '' }}
|
@php
$allowed = ['doc','docx'];
$ext = pathinfo($document->document, PATHINFO_EXTENSION);
@endphp
@if(in_array($ext,$allowed))
@else
@endif
|