@extends('layouts.master') @section('title',trans('dashboard.users')) @section('css') @if(\Illuminate\Support\Facades\App::getLocale()=='ar') @else @endif @endsection @section('page-content')

@lang('dashboard.show_chat')

@foreach($messages as $message) @if($message->rid == $primary_user->id)
avatar 1
@if($message->mtype =='AUDIO') @elseif($message->mtype =='IMAGE')
@else

{{$message->msg}}

@endif

{{date('Y/m/d h:i a', strtotime($message->date))}}

@else
@if($message->mtype =='AUDIO') @elseif($message->mtype =='IMAGE')
@else

{{$message->msg}}

@endif

{{date('Y/m/d h:i a', strtotime($message->date))}}

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