From eb1dfa76e5b7dd016efda18089d38a44363d6968 Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Wed, 21 Nov 2018 21:58:26 -0600 Subject: [PATCH] seat helper --- app/Http/Controllers/FinancesController.php | 4 +++- app/Library/SeatHelper.php | 15 +++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/app/Http/Controllers/FinancesController.php b/app/Http/Controllers/FinancesController.php index b8d1b3de2..71d0bc09d 100644 --- a/app/Http/Controllers/FinancesController.php +++ b/app/Http/Controllers/FinancesController.php @@ -11,6 +11,7 @@ use Auth; use App\User; use App\Libary\Finances; use App\Library\Esi; +use App\Library\SeatHelper; use App\Models\CorpJournal; use Carbon\Carbon; @@ -28,7 +29,8 @@ class FinancesController extends Controller } public function displayWallet() { - // + $helper = new SeatHelper(); + $helper->GetCorpJournal(98287666); } public function displayTaxes() { diff --git a/app/Library/SeatHelper.php b/app/Library/SeatHelper.php index 66e5bab90..bf89cf6a2 100644 --- a/app/Library/SeatHelper.php +++ b/app/Library/SeatHelper.php @@ -25,6 +25,21 @@ class SeatHelper { ]); dd($data); } + + private function DecodeDate($date) { + //Find the end of the date + $dateEnd = strpos($date, "T"); + //Split the string up into date and time + $dateArr = str_split($date, $dateEnd); + //Trim the T and Z from the end of the second item in the array + $dateArr[1] = ltrim($dateArr[1], "T"); + $dateArr[1] = rtrim($dateArr[1], "Z"); + //Combine the date + $realDate = $dateArr[0] . " " . $dateArr[1]; + + //Return the combined date in the correct format + return $realDate; + } } ?> \ No newline at end of file