title = "category" url = "/category/:id" layout = "default" is_hidden = 0 == param('id'); $this['category'] = Tps\Shops\Models\Category::where("id", $id)->get()->first(); $this['shops'] = Tps\Shops\Models\Shop::where('category_id', $this->param('id'))->paginate(12); } ?> ==
{% partial 'home/shop_item' shops=shops %}
{% partial 'home/pagination' result=shops %}