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

شاشة الدردشة

@endsection @section('content')

{{$data->name}}

{{$data->phone}}

    @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->messages}}

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

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

    {{$sender->messages}}

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