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