@extends('layouts.admin') @section('content')
@include('admin.partials.table-header')
@foreach($listings as $listing) @endforeach
{{__('Report')}}
{{__('Status')}}
{{$listing->postable->title}}
{{Str::limit($listing->postable->overview,80)}}
@if($listing->status == 'solved') {{__('Solved')}} @elseif($listing->status == 'pending') {{__('Pending')}} @endif
@include('admin.partials.table-footer')
@endsection