|
|
@ -111,7 +111,7 @@ class StoreController extends BaseController |
|
|
$page = $this->request->input('page',1); |
|
|
$page = $this->request->input('page',1); |
|
|
$pagesize = $this->request->input('pagesize',10); |
|
|
$pagesize = $this->request->input('pagesize',10); |
|
|
$ids = $this->request->input('ids',''); |
|
|
$ids = $this->request->input('ids',''); |
|
|
$ids = explode(',',$ids); |
|
|
|
|
|
|
|
|
$ids = json_decode($ids,true); |
|
|
$employees = Employees::query() |
|
|
$employees = Employees::query() |
|
|
->where('user_id',$userId) |
|
|
->where('user_id',$userId) |
|
|
->whereJsonContains('position', '30') |
|
|
->whereJsonContains('position', '30') |
|
|
|