@extends('vendors.layout') @section('content')
{{ __('Listing Title') }} | {{ __('Name') }} | {{ __('Email ID') }} | {{ __('Phone') }} | {{ __('Actions') }} | |
---|---|---|---|---|---|
@php $listing_content = App\Models\Listing\ListingContent::where([ ['listing_id', $message->listing_id], ['language_id', $language->id], ])->first(); @endphp | @if (!empty($listing_content)) {{ strlen($listing_content->title) > 40 ? mb_substr($listing_content->title, 0, 40, 'utf-8') . '...' : $listing_content->title }} @endif | {{ $message->name }} | {{ $message->email }} | {{ $message->phone }} |