public function test_it_removes_an_item_on_the_booking()
 {
     $this->addNewItem();
     foreach (Booking::content() as $item) {
         Booking::remove($item->rowid);
         $this->assertEquals(0, Booking::count());
     }
 }
 public function destroy($rowId)
 {
     Booking::remove($rowId);
     return Booking::content();
 }