car = $car; $this->carmodel = $carmodel; $this->brand = $brand; } /** * Returns count of car. * * @param array $filter * * @return int */ public function count() { return 0; } /** * Find car by slug. * * @param array $filter * * @return int */ public function car($slug) { return $this->car ->findBySlug($slig) ->toArray(); } }