I have a route:
Router::connect('/restaurants/*', array('controller'=>'restaurants', 'action' => 'view'));
that when a user accesses site.com/restaurants/Seafood, they get a list of seafood restaurants. Well, the problem is, now I want to add an edit function in my controller, and site.com/restaurants/edit/4 routes to the view function of my controller. How do I tell my routes to send /restaurants/edit to the edit() function?
I understand after the fact that the greedy star was a bad idea, but I didn't know how to make my function for view() work correctly without it. Here is my view code:
public function view($type=null) {
$this->set('title', $type.' restaurants in and near Gulf Shores');
$this->paginate['Restaurant']=array(
'limit'=>9,
'order'=>array(
'id'=>'asc'
),
'joins' => array(
array(
'table' => 'cuisines_restaurants',
'alias' => 'CuisinesRestaurant',
'type' => 'inner',
'conditions'=> array('CuisinesRestaurant.restaurant_id = Restaurant.id')
),
array(
'table' => 'cuisines',
'alias' => 'Cuisine',
'type' => 'inner',
'conditions'=> array(
'Cuisine.id = CuisinesRestaurant.cuisine_id'
)
)
)
);
$this->set('restaurantType',$this->paginate($this->Restaurant, array('cuisine_type'=>$type)));
}