@php /** * @var array $data * @var \App\Models\Lead $obj */ @endphp @extends('crud.form') @section('title') {{ $title }} @endsection @section('title-right') @if(auth()->user()->super_user) @endif @endsection @section('form-body')
@can('setStatus', $obj)
@else @endcan @can('setManager', $obj)
@else @endcan
@endsection {{-- ============================================================ ПРАВАЯ КОЛОНКА: комментарии, сделки, история ============================================================ --}} @section('after-form') {{-- Комментарии --}}
Комментарии
@if($obj->exists) @endif
@foreach($obj->comments as $comment) @endforeach
Автор Комментарий Добавлен
{{ $comment->user?->name }} {{ $comment->text }} {{ $comment->created_at->format('d.m.Y H:i') }}
{{-- Сделки --}}
Сделки по лиду
@if($obj->exists) @can('create.deals') Открыть сделку @endcan @endif
@foreach($obj->deals as $item) @endforeach
# Load Fix Ответственный Дата
#{{ $item->id }} {{ number_format($item->load_sum, 0, '.', ' ') . $item->currency }} {{ $item->results_fix_sum }} USD {{ $item->manager?->name }} {{ $item->created_at->format('d.m.Y') }}
@if(auth()->user()->super_user)
История изменений
{!! $data['historyLog'] !!}
@endif @endsection {{-- ============================================================ МОДАЛЬНЫЕ ОКНА ============================================================ --}} @section('modals') @if(auth()->user()->super_user) @endif @endsection @section('page-style') @endsection