public function timnguoiky(Request $request)
 {
     dd($request);
     $query = $request->input('q');
     $nguoikys = Canbo::whereNull('canbos.deleted_at')->with('danhmucphong')->with('danhmucchucvu')->where('canboss.name', 'LIKE', '%' . $query . '%')->get();
     return response()->json($nguoikys);
 }