@extends("admin.admin_app") @section("content")
{!! Form::open(array('url' => 'admin/reports','class'=>'app-search','id'=>'search','role'=>'form','method'=>'get')) !!} {!! 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') }} @if(isset($data->post->post_type) AND $data->post->post_type=="Video") @elseif(isset($data->post->post_type) AND $data->post->post_type=="Image") @else @if(isset($data->post->post_type)) @else @endif @endif {!!strip_tags(Str::limit(stripslashes(\App\Post::getPostStatusInfo($data->post_id,'caption')), 25))!!} {{ stripslashes($data->message) }} {{ date('M d Y h:i a',$data->date) }}
@include("admin.copyright")
@endsection