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