insert([ ]); DB::table('permissions')->insert([ [ 'slug' => 'litecms.block.block.view', 'name' => 'View Block', ], [ 'slug' => 'litecms.block.block.create', 'name' => 'Create Block', ], [ 'slug' => 'litecms.block.block.edit', 'name' => 'Update Block', ], [ 'slug' => 'litecms.block.block.delete', 'name' => 'Delete Block', ], ]); DB::table('menus')->insert([ // Admin menu [ 'parent_id' => 1, 'key' => null, 'url' => 'admin/block/block', 'name' => 'Block', 'description' => null, 'icon' => 'las la-scroll', 'target' => null, 'order' => 190, 'status' => 1, ], // User menu. [ 'parent_id' => 2, 'key' => null, 'url' => 'user/block/block', 'name' => 'Block', 'description' => null, 'icon' => 'las la-scroll', 'target' => null, 'order' => 190, 'status' => 1, ], // Public menu. [ 'parent_id' => 3, 'key' => null, 'url' => 'block', 'name' => 'Block', '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' => 'Block', 'module' => 'Block', 'user_type' => null, 'user_id' => null, 'key' => 'litecms.block.block.key', 'name' => 'Some name', 'value' => 'Some value', 'type' => 'Default', 'control' => 'text', ], */ ]); } }