update to login controller to fix issues
updated moons controller to give total worth rather than renter. Left admin side as renter.
This commit is contained in:
@@ -33,11 +33,11 @@ class MoonsAdminController extends Controller
|
||||
|
||||
$journal = DB::select('SELECT amount,reason,description,date FROM `player_donation_journal` WHERE corporation_id=98287666 AND date >= DATE_SUB(CURRENT_TIMESTAMP, INTERVAL 1 MONTH) ORDER BY date DESC');
|
||||
|
||||
return view('moons.admin.moonjournal')->with('journal', $journal);
|
||||
return view('moons/admin/moonjournal')->with('journal', $journal);
|
||||
}
|
||||
|
||||
public function updateMoon() {
|
||||
return view('moons.admin.updatemoon');
|
||||
return view('moons/admin/updatemoon');
|
||||
}
|
||||
|
||||
public function storeUpdateMoon(Request $request) {
|
||||
@@ -138,7 +138,7 @@ class MoonsAdminController extends Controller
|
||||
}
|
||||
|
||||
public function addMoon() {
|
||||
return view('moons.admin.addmoon');
|
||||
return view('moons/admin/addmoon');
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -236,6 +236,6 @@ class MoonsAdminController extends Controller
|
||||
$html .= '</tr>';
|
||||
}
|
||||
|
||||
return view('moons.admin.adminmoon')->with('html', $html);
|
||||
return view('moons/admin/adminmoon')->with('html', $html);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user