@extends("admin.admin_app") @section("content")
{{ html()->form('GET', url('/admin/reports')) ->attributes(['class' => 'app-search', 'id' => 'search'])->open() }} {{ html()->form()->close() }}
@if(Session::has('flash_message'))
{{ Session::get('flash_message') }}
@endif
@foreach($list as $i => $data) @endforeach
{{trans('words.name')}} {{trans('words.email')}} {{trans('words.title')}} {{trans('words.message')}} {{trans('words.date')}} {{trans('words.action')}}
{{ \App\User::getUserFullname($data->user_id) }} {{ \App\User::getUserInfo($data->user_id,'email') }} {{ stripslashes(\App\Property::getPropertyInfo($data->post_id,'title')) }} {{ stripslashes($data->message) }} {{ date('M d Y h:i a',$data->date) }}
@include("admin.copyright")
@endsection