@extends('admin.layouts.master') @section('title') شاشة الدردشة @endsection @section('css') @endsection @section('content-header')

شاشة الدردشة

@endsection @section('content') @include('admin.messages')
@include('admin.clients.comments')

{{ $data->name }}

{{ $data->phone }}
{{ $data->status->name }}
تغير حاله العميل @include('admin.clients.changeStatus2')

    @foreach ($data->messages as $sender) @if ($sender->type == 'sender_messages')
  • avatar

    @if (auth('web')->check()) {{ auth('web')->user()->name }} @elseif(auth('subscriber')->check()) {{ auth('subscriber')->user()->name }} @else {{ auth('employee')->user()->name }} @endif

    { {{ $sender->created_at->format('d-m-Y (g:i A)') }}

    {{ $sender->type_messages == 'boot' ? '(البوت)' : '(المودريتور)' }}

    {{ $sender->messages }}

  • @else
  • {{ $data->name }}

    { {{ $sender->created_at->format('d-m-Y (g:i A)') }}

    {{ $sender->messages }}

    avatar
  • @endif @endforeach
@endsection @section('js') @endsection