@extends('layouts.front') @push('css') @endpush @section('content') @includeIf('partials.user.header')
@includeIf('partials.user.sidebar')

@lang('Booking Conversation')

@lang('Conversation')

@if (count($messages)>0) @foreach($messages as $key => $data) @if($data->user_id == 0)
@if ($data->admin_id != NULL) @else @endif

{{ $data->message }}
@if ($data->photo != NULL) @lang('attachment')-{{ $key +=1 }} @endif

@else

{{ $data->message }}
@if ($data->photo != NULL) @lang('attachment')-{{ $key +=1 }} @endif

@endif @endforeach @else

@lang('No Message Found')

@endif
@csrf

@lang('Directory')

@if ($listing->user_id == NULL && $listing->admin_id == NULL) @else @endif

{{ $listing->name }}

{{ $listing->real_address }}
{{ $listing->phone_number }}
@php echo $gs->copyright; @endphp
@endsection @push('js') @endpush