moons admin controller

This commit is contained in:
2019-02-15 23:56:52 -06:00
parent 8db86ca313
commit 177eb004bf

View File

@@ -56,8 +56,8 @@ class MoonsAdminController extends Controller
//Take the contact name and create a character id from it //Take the contact name and create a character id from it
$contact = $lookup->CharacterNameToId($request->contact); $contact = $lookup->CharacterNameToId($request->contact);
//Let's find the corporation and alliance information to ascertain whether they are in Warped Intentions or another Legacy Alliance //Let's find the corporation and alliance information to ascertain whether they are in Warped Intentions or another Legacy Alliance
$corpId = LookupCharacter($contact); $corpId = $lookup->LookupCharacter($contact);
$allianceId = LookupCorporation($corpId); $allianceId = $lookup->LookupCorporation($corpId);
//Create the date //Create the date
$date = new Carbon($request->date . '00:00:01'); $date = new Carbon($request->date . '00:00:01');