dispatch('update-cart-count', total_count: $total_count)->to(Navbar::class); //} public function render() { $paketfotoQuery = PaketFoto::query()->where('status', 1); if($this->sort == 'latest') { $paketfotoQuery->latest(); } if($this->sort == 'price') { $paketfotoQuery->orderBy('harga_paket_foto'); } return view('livewire.paket-foto-page', [ 'paketfoto' => $paketfotoQuery->paginate(6), ]); } }