seat helper

This commit is contained in:
2018-11-21 21:58:26 -06:00
parent ccdfa1ab89
commit eb1dfa76e5
2 changed files with 18 additions and 1 deletions

View File

@@ -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() {

View File

@@ -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;
}
}
?>