Laravel.io
how to import this into core.js ?


file employee.js
-----------------------------------
    $("#list").jqGrid({
        url: "employeeListDataAll",
        datatype: "json",
        mtype: "GET",
        colNames: ["id", "Employee ID", "Last Name",   ],
        colModel: [
            { name: "id", width: 50, hidden: true },
            { name: "emp_id", width: 130  },
            { name: "e_lname", width: 110 }
        ],

            goToEmployee();
        }
    }); 



    function goToEmployee() {
       ActivateTab("emp");
           
    }

Please note that all pasted data is publicly available.