updated moon controller forms

This commit is contained in:
2019-01-01 04:15:54 -06:00
parent 7e136214ab
commit d5a3732048
2 changed files with 2 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ class MoonsAdminController extends Controller
$dateInit = Carbon::now();
$date = $dateInit->subDays(30);
$journal = DB::select('SELECT amount,reason,description,date FROM `PlayerDonationJournals` WHERE corporation_id=98287666 AND date >= DATE_SUB(CURRENT_TIMESTAMP, INTERVAL 1 MONTH)');
$journal = DB::select('SELECT amount,reason,description,date FROM `PlayerDonationJournals` WHERE corporation_id=98287666 AND date >= DATE_SUB(CURRENT_TIMESTAMP, INTERVAL 1 MONTH) ASC');
return view('moons.moonjournal')->with('journal', $journal);
}