@extends('oxygen::layouts.master-dashboard') @section('breadcrumbs') {{ lotus()->breadcrumbs([ ['Home', route('dashboard')], // ['Change The Resource Name', route('')], [$pageTitle, null, true], ]) }} @stop @section('pageMainActions') @include('oxygen::dashboard.partials.searchField') @stop @section('content') @include('oxygen::dashboard.partials.table-allItems', [ 'tableHeader' => ['Reported User', 'Reported By', 'Date','Actions|text-right'], ]) @foreach ($allItems as $item) {{ optional($item->reported_user)->full_name }} {{ optional($item->reportedby)->full_name }} {{ $item->created_at }}
View
@endforeach @stop