瀏覽代碼

Buang installer id pada Pending Contractor

hajar
Siti Hajar Ibrahim 5 年之前
父節點
當前提交
da91712ec4
共有 1 個檔案被更改,包括 6 行新增3 行删除
  1. 6
    3
      app/Http/Controllers/Controller.php

+ 6
- 3
app/Http/Controllers/Controller.php 查看文件



public function getDatabase(Request $request) 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();
}
} }
} }

Loading…
取消
儲存