instalar livewire laravel
composer require livewire/livewire
Areeb Ahmar
composer require livewire/livewire
#Add this to composer.json file:
"livewire/livewire": "^1.0"
#Livewire v2 only supports Laravel v7 or above
``composer show`` will list all the installed packages and their current version
OR
Go to your composer.json and in require property you will see the livewire version like:
{
"require": {
"livewire/livewire": "^2.5",
...
},
...
// Like the post if you found it usefull and help other devs to find the good answer