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