@extends('layouts.customer') @section('title') Chats @endsection @section('extra-css') @endsection @section('content')
Inbound Message
Pages 1

Characters left: 160
@if($chat_responses->isNotEmpty()) @foreach($chat_responses as $chat_response)
{{$chat_response->title}}
@endforeach @else
No Data Available
@endif
@php $settings = auth('customer')->user()->settings->where('name', 'data_posting')->first(); $settings = isset($settings) && isset($settings->value)?json_decode($settings->value):''; @endphp @endsection @section('extra-scripts') @endsection