async index(req, res) { const allEmployees = await Employee.find(); res.json({ success: true, data: allEmployees, message: 'Ok' }); },