resq/config/routes/price_tier.yaml
2023-12-20 18:15:17 +08:00

34 lines
913 B
YAML

price_tier_list:
path: /pricetiers
controller: App\Controller\PriceTierController::index
methods: [GET]
price_tier_rows:
path: /pricetiers/rows
controller: App\Controller\PriceTierController::datatableRows
methods: [POST]
price_tier_add_form:
path: /pricetiers/newform
controller: App\Controller\PriceTierController::addForm
methods: [GET]
price_tier_add_submit:
path: /pricetiers
controller: App\Controller\PriceTierController::addSubmit
methods: [POST]
price_tier_update_form:
path: /pricetiers/{id}
controller: App\Controller\PriceTierController::updateForm
methods: [GET]
price_tier_update_submit:
path: /pricetiers/{id}
controller: App\Controller\PriceTierController::updateSubmit
methods: [POST]
price_tier_delete:
path: /pricetiers/{id}
controller: App\Controller\PriceTierController::deleteSubmit
methods: [DELETE]