insert([ ]); DB::table('permissions')->insert([ [ 'slug' => 'outh2_a_p_i.oauth_apps.view', 'name' => 'View OauthApps', ], [ 'slug' => 'outh2_a_p_i.oauth_apps.create', 'name' => 'Create OauthApps', ], [ 'slug' => 'outh2_a_p_i.oauth_apps.edit', 'name' => 'Update OauthApps', ], [ 'slug' => 'outh2_a_p_i.oauth_apps.delete', 'name' => 'Delete OauthApps', ], /* [ 'slug' => 'outh2_a_p_i.oauth_apps.verify', 'name' => 'Verify OauthApps', ], [ 'slug' => 'outh2_a_p_i.oauth_apps.approve', 'name' => 'Approve OauthApps', ], [ 'slug' => 'outh2_a_p_i.oauth_apps.publish', 'name' => 'Publish OauthApps', ], [ 'slug' => 'outh2_a_p_i.oauth_apps.unpublish', 'name' => 'Unpublish OauthApps', ], [ 'slug' => 'outh2_a_p_i.oauth_apps.cancel', 'name' => 'Cancel OauthApps', ], [ 'slug' => 'outh2_a_p_i.oauth_apps.archive', 'name' => 'Archive OauthApps', ], */ ]); DB::table('menus')->insert([ [ 'parent_id' => 1, 'key' => null, 'url' => 'admin/outh2_a_p_i/oauth_apps', 'name' => 'OauthApps', 'description' => null, 'icon' => 'fa fa-newspaper-o', 'target' => null, 'order' => 190, 'status' => 1, ], [ 'parent_id' => 2, 'key' => null, 'url' => 'user/outh2_a_p_i/oauth_apps', 'name' => 'OauthApps', 'description' => null, 'icon' => 'icon-book-open', 'target' => null, 'order' => 190, 'status' => 1, ], [ 'parent_id' => 3, 'key' => null, 'url' => 'oauth_apps', 'name' => 'OauthApps', '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. /* [ 'key' => 'outh2_a_p_i.oauth_apps.key', 'name' => 'Some name', 'value' => 'Some value', 'type' => 'Default', ], */ ]); } }