84 lines
3.0 KiB
PHP
84 lines
3.0 KiB
PHP
<div class="" style="min-height:auto">
|
|
@foreach ($chats as $chat)
|
|
@if ($chat->by == 'User')
|
|
{{-- <div class="receive container mr-0 mb-4"> --}}
|
|
<div class="send-right">
|
|
<div class="receive">
|
|
@if ($chat->message)
|
|
<p>{{ $chat->message }}</p>
|
|
|
|
<span
|
|
style="float:right; font-weight: bold; font-size: 10px; text-align: center;">{{ $chat->created_at->format('d/m/Y H:i:s') }}</span>
|
|
</div>
|
|
@else
|
|
<a type="button" class="text-light" href="{{ route('chat-attachment-download', $chat->file_name) }}">Click
|
|
Here To Download</a>
|
|
<span
|
|
style="float:right; font-weight: bold; font-size: 10px; text-align: center;">{{ $chat->created_at->format('d/m/Y H:i:s') }}</span>
|
|
</div>
|
|
@endif
|
|
|
|
</div>
|
|
@endif
|
|
|
|
@if ($chat->by == 'Admin')
|
|
@if ($chat->admin->getAttributes()['profile_image'])
|
|
<?php
|
|
|
|
// $img = '/uploads/profile/img/' . $user->getAttributes()['profile_image'];
|
|
|
|
// $img = 'https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_960_720.png';
|
|
// $img = '/public/uploads/profile/img/' . $chat->admin->getAttributes()['profile_image'];
|
|
|
|
// $img ="https://staging.freeu.in/public/assets/media/FrontendImages/logo.png"
|
|
?>
|
|
@else
|
|
{{-- @php($img = 'https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_960_720.png') --}}
|
|
{{-- // @php($img = 'https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_960_720.png') --}}
|
|
|
|
{{-- // <!--@php($img = 'https://staging.freeu.in/public/assets/media/FrontendImages/logo.png')--> --}}
|
|
@endif
|
|
<div class="sent container mb-4">
|
|
<div class="sentchat-icon">
|
|
<div class="contact-details">
|
|
{{-- <img src="https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_960_720.png"> --}}
|
|
<img src="{{ asset('public/assets/media/FrontendImages/menu-logo.png') }}">
|
|
|
|
</div>
|
|
</div>
|
|
<div class="sent-chat">
|
|
<p>{{ $chat->message }}</p>
|
|
<div class="sent-time">
|
|
<span>{{ $chat->created_at->format('d/m/Y H:i:s') }}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{-- <div class="sent container mb-4">
|
|
|
|
<div class="sentchat-icon">
|
|
|
|
<div class="contact-details">
|
|
|
|
<img src="{{ $img }}" alt="profile image" />
|
|
|
|
</div>
|
|
|
|
<div class="sent-time">
|
|
|
|
<span>{{ $chat->created_at->format('d/m/Y H:i:s') }}</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="sent-chat">
|
|
|
|
<p>{{ $chat->message }}</p>
|
|
|
|
</div>
|
|
|
|
</div> --}}
|
|
@endif
|
|
@endforeach
|
|
</div>
|