@extends('layouts.main') @section('main-container')

@php $rowCount = 1; @endphp @foreach ($flag_messages as $row) @endforeach
ID Reported Username Sender Username Message Date Status Actions
{{ $rowCount++ }} {{ $row->report_user ? $row->report_user->username : '' }} {{ $row->sender_user ? $row->sender_user->username : '' }} {{ $row->message }} {{ date("d-m-Y", strtotime($row->created_at)) }} @if ($row->status == 0) Pending @elseif ($row->status == 1) No Action @elseif ($row->status == 2) Remove Message @elseif ($row->status == 3) Block User @elseif ($row->status == 4) Delete Report @endif
@endsection