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