@extends('Admin.master_layout.master') @section('title', $title) @section('header_menu') @parent @endsection @section('sidebar_menu') @parent @endsection @section('content')
@if (Session::has('message'))
{!! Session::get('message') !!}
@endif @if (Session::has('error'))
{!! Session::get('error') !!}
@endif @if (Session::has('success'))
{!! Session::get('success') !!}
@endif
{{ $title }} List
    @if(count($ChatRemarks) > 0) @foreach($ChatRemarks as $key => $val)
  • {{ $val->message }}
    {{ getDateTimeFormat($val->created_at) }}

  • @endforeach @endif
@endsection @section('footer') @parent @endsection @section('extraa_script_and_js') @parent @endsection