From 7040b1140f20fbae6b5fbe34419184891235768b Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Sun, 20 Oct 2019 18:43:25 -0500 Subject: [PATCH] lookup helper --- app/Http/Controllers/Dashboard/DashboardController.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/Http/Controllers/Dashboard/DashboardController.php b/app/Http/Controllers/Dashboard/DashboardController.php index 563ca53..1027654 100644 --- a/app/Http/Controllers/Dashboard/DashboardController.php +++ b/app/Http/Controllers/Dashboard/DashboardController.php @@ -56,10 +56,12 @@ class DashboardController extends Controller $endSystem = 'N/A'; } + dd($endSystem); + //Compile the final array $final = [ 'pickup' => $startSystem, - 'destination' => $endStation->system_id, + 'destination' => $endSystem, 'type' => $con->type, 'volume' => $con->volume, 'expired' => $esiHelper->DecodeDate($con->date_expired),