insert([ ]); DB::table('permissions')->insert([ [ 'slug' => 'bixo.chat.chat.view', 'name' => 'View Chat', ], [ 'slug' => 'bixo.chat.chat.create', 'name' => 'Create Chat', ], [ 'slug' => 'bixo.chat.chat.edit', 'name' => 'Update Chat', ], [ 'slug' => 'bixo.chat.chat.delete', 'name' => 'Delete Chat', ], [ 'slug' => 'bixo.chat.chat.verify', 'name' => 'Verify Chat', ], [ 'slug' => 'bixo.chat.chat.approve', 'name' => 'Approve Chat', ], [ 'slug' => 'bixo.chat.chat.publish', 'name' => 'Publish Chat', ], [ 'slug' => 'bixo.chat.chat.unpublish', 'name' => 'Unpublish Chat', ], [ 'slug' => 'bixo.chat.chat.cancel', 'name' => 'Cancel Chat', ], [ 'slug' => 'bixo.chat.chat.archive', 'name' => 'Archive Chat', ], ]); DB::table('menus')->insert([ // Admin menu [ 'parent_id' => 1, 'key' => null, 'url' => 'admin/chat/chat', 'name' => 'Chat', 'description' => null, 'icon' => 'las la-scroll', 'target' => null, 'order' => 190, 'status' => 1, ], // User menu. [ 'parent_id' => 2, 'key' => null, 'url' => 'user/chat/chat', 'name' => 'Chat', 'description' => null, 'icon' => 'las la-scroll', 'target' => null, 'order' => 190, 'status' => 1, ], // Public menu. [ 'parent_id' => 3, 'key' => null, 'url' => 'chat', 'name' => 'Chat', 'description' => null, 'icon' => 'las la-scroll, 'target' => null, 'order' => 190, 'status' => 1, ], ]); DB::table('settings')->insert([ // Uncomment and edit this section for entering value to settings table. /* [ 'pacakge' => 'Chat', 'module' => 'Chat', 'user_type' => null, 'user_id' => null, 'key' => 'bixo.chat.chat.key', 'name' => 'Some name', 'value' => 'Some value', 'type' => 'Default', 'control' => 'text', ], */ ]); } }