@extends('layouts.app') @section('content')
@include('layouts.leftside-menubar')
@include('components.pages-bar',['pageTitle' =>''. trans('Communicate').' / '. trans('Feedback').'']) @include('components.sectionbar.communicate-bar')
@if (count($complains)>0)
@foreach ($complains as $key=>$complain) @endforeach
# @lang('Name') @lang('Contact Number') @lang('Email') @lang('Description') @lang('Edit') @lang('Delete')
{{ $key + 1 }} {{$complain->name}} {!! $complain->contactnumber !!} {!! $complain->email !!} {{\Illuminate\Support\Str::limit($complain->description,50)}} readmore @lang('Edit') @lang('Delete')
@else
@lang('No Related Data Found.')
@endif
@endsection