/**
  * Execute the Command
  */
 public function handle()
 {
     return Classified::create(['title' => $this->title, 'category_id' => $this->category_id, 'description' => $this->description, 'price' => $this->price, 'condition' => $this->condition, 'main_image' => $this->main_image, 'location' => $this->location, 'email' => $this->email, 'phone' => $this->phone, 'owner_id' => $this->owner_id]);
 }