Parcourir la source

Buang installer id pada Pending Contractor

hajar
Siti Hajar Ibrahim il y a 5 ans
Parent
révision
da91712ec4
1 fichiers modifiés avec 6 ajouts et 3 suppressions
  1. 6
    3
      app/Http/Controllers/Controller.php

+ 6
- 3
app/Http/Controllers/Controller.php Voir le fichier

@@ -120,8 +120,11 @@ class Controller extends BaseController

public function getDatabase(Request $request)
{
$staff = Staff::where('api_token', null)->where('roles_access', 'Installer')->get();
return $staff;
$wo = WorkOrder::where('installer_id', '5fb1e673a1f29b49f9087a48')->where('status', 'like', '%Pending%')->get();
foreach ($wo as $w) {
$w->status = "Pending Contractor";
$w->installer_id = "";
$w->save();
}
}
}

Chargement…
Annuler
Enregistrer