So I've created my first website based on Bolt CMS and I can't fininsh one, last task.
The task is to make simple routes:
list of records from selected category - /realizations/cool-category
list of all records - /realizations/
single record - /realizations/cool-category/product1
I've managed to make it work but I can't manage to use record taxonomy (category) in routing file to set link like above.
I mean something like that : path: /{contenttypeslug}/{category_gotes_here}/{slug}/
Because of that, one (I guess horrible) idea appeared in my head - make slug use record title field and its category field.
Unfortunately slug's uses: [title, category]
returns /title-category/
while I need /title/category/
format.
It there any way to make this one work? Or is there another, more valid way to add record category before its title in routing?