class ShopController extends Controller
{
public function actionCategory($slug){
//logic
return $this->render('category_template');
}
public function actionProduct($slug){
//logic
return $this->render('product_template');
}
}