Skip to content

Instantly share code, notes, and snippets.

View jzpeepz's full-sized avatar

Jonathan Peoples jzpeepz

  • FLEX360
  • Conway, AR
View GitHub Profile
elseif (@$data['user_id'] && @$data['only_open'] === true) {
$query = DiscordSupportTickets::where('user_id', '=', $data['user_id'])
->where('open', '=', 1);
->orderBy('ticket', 'DESC')
->get();
}