Файловый менеджер - Редактировать - /home/kckglobal/public_html/portal/resources/views/front/tasks/notes/show.blade.php
Назад
@php $editTaskNotePermission = user()->permission('edit_task_notes'); $deleteTaskNotePermission = user()->permission('delete_task_notes'); @endphp @forelse($notes as $note) <div class="card w-100 rounded-0 border-0 note"> <div class="card-horizontal"> <div class="card-img my-1 ml-0"> <img src="{{ $note->user->image_url }}" alt="{{ $note->user->name }}"> </div> <div class="card-body border-0 pl-0 py-1"> <div class="d-flex flex-grow-1"> <h4 class="card-title f-15 f-w-500 text-dark mr-3">{{ $note->user->name }}</h4> <p class="card-date f-11 text-lightest mb-0"> {{ $note->created_at->diffForHumans() }} </p> <div class="dropdown ml-auto note-action"> <button class="btn btn-lg f-14 p-0 text-lightest rounded dropdown-toggle" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> <i class="fa fa-ellipsis-h"></i> </button> <div class="dropdown-menu dropdown-menu-right border-grey rounded b-shadow-4 p-0" aria-labelledby="dropdownMenuLink" tabindex="0"> @if ($editTaskNotePermission == 'all' || ($editTaskNotePermission == 'added' && $note->added_by == user()->id)) <a class="cursor-pointer d-block text-dark-grey f-13 py-3 px-3 edit-note" href="javascript:;" data-row-id="{{ $note->id }}">@lang('app.edit')</a> @endif @if ($deleteTaskNotePermission == 'all' || ($deleteTaskNotePermission == 'added' && $note->added_by == user()->id)) <a class="cursor-pointer d-block text-dark-grey f-13 pb-3 px-3 delete-note" data-row-id="{{ $note->id }}" href="javascript:;">@lang('app.delete')</a> @endif </div> </div> </div> <div class="card-text f-14 text-dark-grey text-justify">{!! $note->note !!} </div> </div> </div> </div> @empty <div class="align-items-center d-flex flex-column text-lightest p-20 w-100"> <i class="fa fa-clipboard f-21 w-100"></i> <div class="f-15 mt-4"> - @lang('messages.noNoteFound') - </div> </div> @endforelse
| ver. 1.4 |
Github
|
.
| PHP 8.2.28 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка