From b9b05dfdbe7a513777c457ad3fa8b7d092da421e Mon Sep 17 00:00:00 2001 From: omair saleh Date: Fri, 1 Oct 2021 17:41:42 +0800 Subject: [PATCH] test updating loading date for containers from vt portal --- routes/web.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/routes/web.php b/routes/web.php index d7d61856..779e59cf 100644 --- a/routes/web.php +++ b/routes/web.php @@ -140,7 +140,8 @@ Route::get('/report', function(){ $containerDetails = $containerDetails->Rows[0]; - dd($containerDetails); + $container->loading_date = $containerDetails[5]; + $container->save(); } // $shipping_packing_lists = \App\Models\PackingList::where('type', '=', \App\Classes\ValueObjects\Constants\PackingListType::SHIPPING_PACKING_LIST)->get();