{{-- resources/views/general/received-tips/show.blade.php --}} @extends($layout) @section('title', 'تفاصيل النصيحة') @section('page-title', 'تفاصيل النصيحة') @push('styles') @endpush @section('content')
{{-- Back --}}
العودة للقائمة
{{-- Tip Card --}}
{{-- Header --}}
{{ $tip->advisor->name }}
تفاصيل النصيحة

{{ $tip->title }}

من: {{ $tip->advisor->name }}

@if($tip->reply) تم الرد @endif
{{-- Body --}}
{{-- Content --}}

نص النصيحة

{{ $tip->content }}

{{-- Attachment --}} @if($tip->attachment)

المرفقات

@if($tip->attachment_type === 'image') Attachment @else تحميل الملف ({{ strtoupper($tip->attachment_type) }}) @endif
@endif {{-- Previous Reply --}} @if($tip->reply)

ردك السابق

{{ $tip->recipient->name }}

أنت

{{ $tip->replied_at->diffForHumans() }}

{{ $tip->reply }}

@endif {{-- Reply Form --}} @if(!$tip->reply)

الرد على النصيحة

@endif {{-- Extra info --}}
تاريخ الإرسال: {{ $tip->created_at->format('Y/m/d H:i') }}
@if($tip->read_at)
تاريخ القراءة: {{ $tip->read_at->format('Y/m/d H:i') }}
@endif
@push('scripts') @endpush @endsection