insert([ ]); DB::table('permissions')->insert([ [ 'slug' => 'cart.shipping.view', 'name' => 'View Shipping', ], [ 'slug' => 'cart.shipping.create', 'name' => 'Create Shipping', ], [ 'slug' => 'cart.shipping.edit', 'name' => 'Update Shipping', ], [ 'slug' => 'cart.shipping.delete', 'name' => 'Delete Shipping', ], ]); DB::table('menus')->insert([ [ 'parent_id' => 1, 'key' => null, 'url' => 'admin/cart/shipping', 'name' => 'Shipping', 'description' => null, 'icon' => 'fa fa-newspaper-o', 'target' => null, 'order' => 190, 'status' => 1, ], [ 'parent_id' => 2, 'key' => null, 'url' => 'user/cart/shipping', 'name' => 'Shipping', 'description' => null, 'icon' => 'icon-book-open', 'target' => null, 'order' => 190, 'status' => 1, ], [ 'parent_id' => 3, 'key' => null, 'url' => 'shipping', 'name' => 'Shipping', '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. /* [ 'pacakge' => 'Cart', 'module' => 'Shipping', 'user_type' => null, 'user_id' => null, 'key' => 'cart.shipping.key', 'name' => 'Some name', 'value' => 'Some value', 'type' => 'Default', 'control' => 'text', ], */ ]); } }