Logo

dev-resources.site

for different kinds of informations.

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

Published at
9/11/2024
Categories
laravel
webdev
php
livewire
Author
ilvalerione
Categories
4 categories in total
laravel
open
webdev
open
php
open
livewire
open
Author
11 person written this
ilvalerione
open
Laravel Livewire: What it is, and how to use it in your web app

Livewire is one of the most important projects in the Laravel ecosystem specifically targeted to frontend development. Livewire v3 has been recently released, so let’s explore what Livewire is, and what kind of projects fits its architecture.

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:

  • The page is rendered with the initial states of the component, like any page created using Blade;
  • 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;
  • 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;
  • 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.

If you want to learn more about the challenges of building a developers driven company, you can follow me on Linkedin or X.

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
Enter fullscreen mode Exit fullscreen mode
<html>
<head>
    ...

    @livewireStyles
</head>
<body>
    ...

    @livewireScripts
</body>
</html>
Enter fullscreen mode Exit fullscreen mode

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.php
VIEW: resources/views/livewire/spy-input.blade.php
Enter fullscreen mode Exit fullscreen mode

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:

// app/Http/Livewire/SpyInput.php

namespace App\Livewire;

use Livewire\Component;

class SpyInput extends Component
{
    public string $message;

    public function render()
    {
        return view('livewire.spy-input');
    }
}
Enter fullscreen mode Exit fullscreen mode

Implement the component view as follows:

// resources/views/livewire/spy-input.blade.php

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

And finally put the Livewire component in a blade view:

<html>
<head>
    @livewireStyles
</head>
<body>

    <livewire:spy-input />

    @livewireScripts
</body>
</html>
Enter fullscreen mode Exit fullscreen mode

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 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>
Enter fullscreen mode Exit fullscreen mode

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>
Enter fullscreen mode Exit fullscreen mode
class SpyInput extends Component
{
    public function doSomething()
    {
        // Your code here…
    }
}
Enter fullscreen mode Exit fullscreen mode

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.

{{-- Initial assignment of the the $book property in the ShowBook class --}}
<livewire:show-book :book="$book">

class ShowBook extends Component
{
    public $title;
    public $excerpt;

    // "mount" instead of "__constuct"
    public function mount(Book $book = null)
    {
        $this->title = $book->title;
        $this->excerpt = $book->excerpt;
    }
}
Enter fullscreen mode Exit fullscreen mode

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>
Enter fullscreen mode Exit fullscreen mode
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()
    {
        $validated = $this->validate($this->rules);

        Book::create($validated);

        return redirect()->to('/books);
    }
}
Enter fullscreen mode Exit fullscreen mode

Or you can use PHP Attributes to declare the desired validation rules for a class property:

class BookForm extends Component
{
    #[Validate('required|max:200')]
    public $title;

    #[Validate('required|unique:books|size:17')]
    public $isbn;

    #[Validate('max:500')]
    public $excerpt;

    public function saveBook()
    {
        $this->validate();

        Book::create([
            'title' => $this->title,
            'isbn' => $this->isbn,
            'excerpt' => $this->excerpt,
        ]);

        return redirect()->to('/books);
    }
}
Enter fullscreen mode Exit fullscreen mode

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.

Monitor your Laravel application for free

Inspector is a Code Execution Monitoring tool specifically designed for software developers. You don't need to install anything at the server level, just install the Laravel package and you are ready to go.

If you are looking for HTTP monitoring, database query insights, and the ability to forward alerts and notifications into your preferred messaging environment, try Inspector for free. Register your account.

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

Laravel Code Execution Monitoring

livewire Article's
30 articles in total
Favicon
Need someone to contribute in writing test code for my open source project
Favicon
Samarium erp
Favicon
How To Install & Setup Laravel Livewire 3
Favicon
How to Redirect URL or Route using Laravel Livewire 3
Favicon
Implement CRUD Operations, SORT, SEARCH, PAGINATION, and many more in MINUTES
Favicon
Samarium erp
Favicon
Library WireUI : Superseded FluxUI
Favicon
A Beginner's Guide to Starting with Laravel Livewire
Favicon
Converting a Laravel Blade Application to Use Livewire
Favicon
Have you had a chance to try the Commenter package (Modern all-in-one commenting system)?
Favicon
Please comment on installation instructions given in README of my open source project
Favicon
Livewire 3 Multiple Select with Alpine JS
Favicon
Automatic Discovery and Loading of Livewire Components from Different Namespaces
Favicon
Laravel livewire resources
Favicon
Laravel 11 Livewire Wizard Multi Step Form Tutorial
Favicon
Working with multiple image select in Laravel Livewire
Favicon
Free Component Libraries For Your Next Laravel Application (part one)
Favicon
Using Tiptap Rich Text Editor with Livewire
Favicon
Laravel Livewire: What it is, and how to use it in your web app
Favicon
Pourquoi Laravel Livewire Table est un meilleur choix que DataTables ???
Favicon
Managing Loading States in Livewire 3 with Alpine.js
Favicon
Introducing a Flexible and Framework-Agnostic Laravel Livewire Modal Package
Favicon
How I Made My Laravel Project More Efficient!
Favicon
From Novice to Pro: How to Conquer Virtual Cricket on 711bat Online Gaming Platform!
Favicon
Integrating Cloudflare Workers AI with Laravel Livewire 3
Favicon
Generate Livewire Unit Test from Created Livewire Components
Favicon
How to use Quill Editor with Laravel 10 and Livewire v3
Favicon
using only script to re-initialize the livewire variable without going to component
Favicon
Laravel and Livewire Examples
Favicon
Laravel Livewire CRUD with Breeze & Tailwind CSS

Featured ones: