@php
$profile_img =\App\Models\Utility::get_file(config('chatify.attachments.folder'));
@endphp
{{-- -------------------- The default card (white) -------------------- --}}
@if($viewType == 'default')
@if($from_id != $to_id)
{!! ($message == null && $attachment != null && @$attachment[2] != 'file') ? $attachment[1] : nl2br($message) !!}
{{ $time }}
{{-- If attachment is a file --}}
@if(@$attachment[2] == 'file')
{{$attachment[1]}}
@endif
{{-- If attachment is an image --}}
@if(@$attachment[2] == 'image')
@endif
@endif
@endif
{{-- -------------------- Sender card (owner) -------------------- --}}
@if($viewType == 'sender')
{!! ($message == null && $attachment != null && @$attachment[2] != 'file') ? $attachment[1] : nl2br($message) !!}
{{ $time }}
{{-- If attachment is a file --}}
@if(@$attachment[2] == 'file')
{{$attachment[1]}}
@endif
{{-- If attachment is an image --}}
@if(@$attachment[2] == 'image')
@endif
@endif