Parcourir la source

latlong

master
Siti Rahayu il y a 5 ans
Parent
révision
296155477a
1 fichiers modifiés avec 5 ajouts et 1 suppressions
  1. 5
    1
      app/Jobs/StoreCompoundEPBT.php

+ 5
- 1
app/Jobs/StoreCompoundEPBT.php Voir le fichier

@@ -58,7 +58,11 @@ class StoreCompoundEPBT implements ShouldQueue
// $compound = Compound::with('Department','DeedLaw','Faulty')->where('kpd', 'KP43932')->first();

$now = Carbon::now()->toDateTimeString();
$coordinate = explode(",",$compound->latlong);
$coordinate = [];
if (!empty($compound->latlong)) {
$coordinate = explode(",",$compound->latlong);
}

//get ePBT MBIP faulty lists
$client = new \GuzzleHttp\Client();

Chargement…
Annuler
Enregistrer