Laravel Livewire: What it is, and how to use it in your web app (2024)

Livewire is one of the most important projects in the Laravel ecosystem specifically targeted to frontend development.

The peculiarity of Livewire is that it allows the development of a “modern” web application without the need to use dedicated JavaScript frameworks.

With Livewire it is possible to develop Blade components that offer a level of reactivity equal to that offered by Vue or React, without the need to manage the complexity of a project with a decoupled frontend and backend. You can continue developing your application within the borders of Laravel and Blade templates.

How Livewire Works

Livewire is a Composer package that you can add to a Laravel project. It must then be activated on each HTML page (or the page, in case you want to create a Single Page Application) using appropriate Blade directives. Livewire components consist of a PHP class and a Blade file that contains the logic of how a specific frontend component works and it must be rendered.

When the browser asks to access a page where Livewire is used, the following happens:

  1. The page is rendered with the initial states of the component, like any page created using Blade;
  2. When the component UI fires an interaction an AJAX call is made to an appropriate route indicating the Livewire component and the interaction that occurred, plus the status of the component;
  3. The data is processed in the PHP part of the component, which performs the new rendering as a result of the interaction and sends it back to the browser;
  4. The DOM of the page is changed according to the changes received from the server.

It’s very similar to what Vue and React do, but in this case the reactivity logic to respond to an interaction is managed by the backend and not in the javascript side.

To help you better understand the logic I’ll show you an example of this comparison below.

How to install Laravel Livewire

Livewire installation is absolutely minimal. Install the Composer package in your Laravel project and add the necessary Blade directives to all pages (or to the common layout from which all Blade templates in the project are derived).

composer require livewire/livewire
<html><head> @livewireStyles</head><body> @livewireScripts</body></html>

How to create a Laravel Livewire Component

Once the Composer package is installed, a new Artisan make sub-command is available to create a new Livewire component. Each component will be made with a PHP class and a Blade view.It’s similar to the class-based components of Blade.

php artisan make:livewire SpyInput COMPONENT CREATED 🤙CLASS: app/Http/Livewire/SpyInput.phpVIEW: resources/views/livewire/spy-input.blade.php

The component in this example will “spy” what is written in an HTML input field, without the need to write JavaScript code.

We then insert a public property to the component class:

class SpyInput extends Component{ public string $message; public function render() {return view('livewire.spy-input'); }}

Implement the component view as follows:

<div> <label>Type here:</label> <input type="text" wire:model="message"/> <span>You typed: <span>{{ $message }}</span></span></div>

And finally put the Livewire component in a blade view:

<html><head> @livewireStyles</head><body> <livewire:spy-input /> @livewireScripts</body></html>

In a normal Blade component all public properties of the component class are visible in the blade template. So in <span>{{ $message }}</span> the value of the $message property will be automatically displayed. In a normal class based component, however, this only happens on the first component rendering. If you type something in the input field nothing changes in the span tag.

In the Livewire component, however, we used the wire:model=”message” attribute in the <input> field. This attribute ensures that the value of the input field is linked to the $message property in the PHP class. When you write the new value in the input field it is sent to the server, which updates the value of $message and performs a new render, sending it back to the frontend which, then, updates the text in <span>{{ $message }}</span>.

By opening the Network tab of the browser’s development tools, we will notice that on each key press on the keyboard makes a call to the server on the route below:

/livewire/message/<COMPONENT-NAME>

The response to each call contains the new rendered HTML for the component, which Livewire will insert into the page in place of the old one. Various custom wire attributes are available. For example you can execute a public method of the component class when clicking on a button. Here is an example of this biding:

<button wire:click=”doSomething”>Click Here</button>
class SpyInput extends Component{ public function doSomething() {// Your code here… }}

where doSomething is a public method of the PHP class of the Livewire component.

Integration with other Laravel features

The PHP class connected to the component behaves like any other PHP class in a Laravel project. The only difference is that it uses the mount method instead of the classic __construct class constructor to initialize the public properties of the class.

{{-- automatic assignment to the $book property of the ShowBook class --}}<livewire:show-book :book="$book">class ShowBook extends Component{ public $title; public $excerpt; // "mount" instead of "__constuct" public function mount($book) {$this->title = $book->title;$this->content = $book->content; }}

You can also use the protected property $rules to configure the validation restrictions on the data sent from the frontend to the backend. You have to call the validate() method to validate the data:

<form wire:submit.prevent="saveBook"> <input type="text" wire:model="title"/> @error('title') <span class="error">{{ $message }}</span> @enderror <input type="text" wire:model="excerpt"/> @error('excerpt') <span class="error">{{ $message }}</span> @enderror <input type="text" wire:model="isbn"/> @error('isbn') <span class="error">{{ $message }}</span> @enderror <button type="submit">Save Book</button></form>
class BookForm extends Component{ public $title; public $excerpt; public $isbn; protected $rules = ['title' => ['required', 'max:200'],'isbn' => ['required', 'unique:books', 'size:17'],'excerpt' => 'max:500' ]; public function saveBook() {$arguments = $this->validate();Book::create($arguments); }}

In general, each Livewire component behaves in the ways that a Laravel developer expects from a PHP class inside a Laravel project. Thus allowing the creation of reactive web interfaces without the need to separate the development projects between Laravel and Vue/React.

New To Inspector? Monitor your application for free

Inspector is a Code Execution Monitoring tool specifically designed for software developers. You don’t need to install anything in the infrastructure, just install theLaravel packageand you are ready to go.

Unlike other complex, all-in-one platforms, Inspector is super easy, and Laravel friendly.

If you are looking for effective automation, deep insights, and the ability to forward alerts and notifications into your messaging environment try Inspector for free.Register your account.

Or learn more on the website:https://inspector.dev

Laravel Livewire: What it is, and how to use it in your web app (2024)

References

Top Articles
Latest Posts
Article information

Author: Carlyn Walter

Last Updated:

Views: 6078

Rating: 5 / 5 (50 voted)

Reviews: 81% of readers found this page helpful

Author information

Name: Carlyn Walter

Birthday: 1996-01-03

Address: Suite 452 40815 Denyse Extensions, Sengermouth, OR 42374

Phone: +8501809515404

Job: Manufacturing Technician

Hobby: Table tennis, Archery, Vacation, Metal detecting, Yo-yoing, Crocheting, Creative writing

Introduction: My name is Carlyn Walter, I am a lively, glamorous, healthy, clean, powerful, calm, combative person who loves writing and wants to share my knowledge and understanding with you.