orderByDesc("created_at"); } public function row($row): array { $affectedJson = json_encode([ 'id'=> $row->affected->id ?? '', 'name'=> ($row->affected->title ??($row->affected->name ?? ($row->affected->description ?? ''))), ], JSON_UNESCAPED_UNICODE); return [ 'created_at' => $row->created_at, 'ip_address' => $row->ip, 'note' => $row->lang_text , 'user_id' => ($row->user->name ?? 'Unknown'), 'affected_id' => $affectedJson, ]; } public function headers(): array { return [ 'created_at' => "Created", 'ip_address' => "IP Address", 'note' => "Note", 'user_id' => "Author", 'affected_id' => "Model" ]; } }