'staff_3', 'requestData' => [] ]; } public function handler() { $staffs = Staff::getAll(); $staffArray = []; foreach($staffs as $staff) { $staffArray[] = $staff->toArray(); } Response::respondSuccess($staffArray); } }