Laravel Livewire is a great framework for creating interactive web apps without writing any JavaScript. In this tutorial we're going to make a few components using Laravel Livewire so we can see the power of this framework.
Setting up
Important: Livewire requires you to use Laravel.
You can install Livewire using Composer:
composer require livewire/livewire
Next, you have to include Livewire's assets on your page:
<livewire:styles /> <!-- Styles -->
<livewire:scripts /> <!-- Scripts -->
And that was it! Now you can use Livewire.
Top comments (1)
This is barely an introduction. 😂