@extends('layouts.front-end.app') @section('title','Home') @push('css_or_js') @endpush @section('content')
@include('web-views.partials._profile-aside') {{-- Seller List start --}} @if (isset($unique_shops))

@if (isset($unique_shops)) @foreach($unique_shops as $key=>$shop)
{{$shop->name}}
@endForeach @endif
@if (isset($chattings)) @foreach($chattings as $key => $chat) @if ($chat->sent_by_seller)
sunil

{{$chat->message}}

{{$chat->created_at->format('h:i A')}} | {{$chat->created_at->format('M d')}}
@else

{{$chat->message}}

{{$chat->created_at->format('h:i A')}} | {{$chat->created_at->format('M d')}}
@endif @endForeach {{-- for scroll down --}}
@endif
@csrf {{-- Send --}} {{-- --}}
@else

No conversetion found

@endif
@endsection @push('script') @endpush