Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
volt(Phalcon)を使ってURLを作りたいです。
私が試してみました:
{{ url("order/view/", ["id" :order.id]) }}
ただし、次のような URL が生成されます。
http://localhost/gateway-new/order/view/?id=7
URLを次のようにしたいのですが:
http://localhost/gateway-new/order/view/id/7
これを正しく行う方法はありますか?
{{ url("order/view/id/" ~ order.id) }}