insert([ ]); DB::table('permissions')->insert([ [ 'slug' => 'company.employee.view', 'name' => 'View Employee', ], [ 'slug' => 'company.employee.create', 'name' => 'Create Employee', ], [ 'slug' => 'company.employee.edit', 'name' => 'Update Employee', ], [ 'slug' => 'company.employee.delete', 'name' => 'Delete Employee', ], ]); DB::table('menus')->insert([ [ 'parent_id' => 1, 'key' => null, 'url' => 'admin/company/employee', 'name' => 'Employee', 'description' => null, 'icon' => 'fa fa-newspaper-o', 'target' => null, 'order' => 190, 'status' => 1, ], [ 'parent_id' => 2, 'key' => null, 'url' => 'user/company/employee', 'name' => 'Employee', 'description' => null, 'icon' => 'icon-book-open', 'target' => null, 'order' => 190, 'status' => 1, ], [ 'parent_id' => 3, 'key' => null, 'url' => 'employee', 'name' => 'Employee', 'description' => null, 'icon' => null, 'target' => null, 'order' => 190, 'status' => 1, ], ]); DB::table('settings')->insert([ // Uncomment and edit this section for entering value to settings table. /* [ 'pacakge' => 'Company', 'module' => 'Employee', 'user_type' => null, 'user_id' => null, 'key' => 'company.employee.key', 'name' => 'Some name', 'value' => 'Some value', 'type' => 'Default', 'control' => 'text', ], */ ]); } }