'categoryChanged', 'showCount' => 'showCountChanged' ]; public $categories; public $category_id; public $limit = 9; public function mount($categories) { $this->categories = $categories; $this->category_id = ''; } public function render() { return view('livewire.pos.product-list', [ 'products' => Product::when($this->category_id, function ($query) { return $query->where('category_id', $this->category_id); }) ->paginate($this->limit) ]); } public function categoryChanged($category_id) { $this->category_id = $category_id; $this->resetPage(); } public function showCountChanged($value) { $this->limit = $value; $this->resetPage(); } public function selectProduct($product) { $this->dispatch('productSelected', $product); } }