26 lines
503 B
PHP
26 lines
503 B
PHP
<?php
|
|
|
|
namespace App\Livewire\Partials;
|
|
|
|
use App\Helpers\CartManagement;
|
|
use Livewire\Component;
|
|
|
|
class Navbar extends Component
|
|
{
|
|
|
|
public $total_count = 0;
|
|
|
|
public function amount(){
|
|
$this->total_count = count(CartManagement::getCartItemsFromCookie());
|
|
}
|
|
|
|
#[On('update-cart-count')]
|
|
public function updateCartCount($total_count) {
|
|
$this->total_count = $total_count;
|
|
}
|
|
public function render()
|
|
{
|
|
return view('livewire.partials.navbar');
|
|
}
|
|
}
|