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