From 3f6ffacc333ffc46ad37e5c988ed007dc2f54944 Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Sun, 20 Oct 2019 18:21:27 -0500 Subject: [PATCH] contract dashboard --- app/Http/Controllers/Dashboard/DashboardController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Http/Controllers/Dashboard/DashboardController.php b/app/Http/Controllers/Dashboard/DashboardController.php index 08e5e6a..cdd889f 100644 --- a/app/Http/Controllers/Dashboard/DashboardController.php +++ b/app/Http/Controllers/Dashboard/DashboardController.php @@ -53,8 +53,8 @@ class DashboardController extends Controller //Compile the final array $final = [ - 'pickup' => $startStation, - 'destination' => $endStation, + 'pickup' => $startStation->system_id, + 'destination' => $endStation->system_id, 'type' => $con->type, 'volume' => $con->volume, 'expired' => $esiHelper->DecodeDate($con->date_expired),