Skip to main content
Glama
brianirish

Laravel 12 Docs MCP Server

by brianirish
lazy.md10.1 kB
# Livewire - Lazy Source: https://livewire.laravel.com/docs/lazy Version 3.x Version 3.x Version 2.x Version 1.x * ##### Getting Started + Quickstart + Installation + Upgrade Guide UI Components → * ##### Essentials + Components + Properties + Actions + Forms + Events + Lifecycle Hooks + Nesting Components + Testing * ##### Features + Alpine + Navigate + Lazy Loading + Validation + File Uploads + Pagination + URL Query Parameters + Computed Properties + Session Properties + Redirecting + File Downloads + Locked Properties + Request Bundling + Offline States + Teleport * ##### HTML Directives + wire:click + wire:submit + wire:model + wire:loading + wire:navigate + wire:current + wire:cloak + wire:dirty + wire:confirm + wire:transition + wire:init + wire:poll + wire:offline + wire:ignore + wire:replace + wire:show + wire:stream + wire:text * ##### Concepts + Morphing + Hydration + Nesting * ##### Advanced + Troubleshooting + Security + JavaScript + Synthesizers + Contribution Guide * ##### Packages + Volt Lazy Loading ============ Are you a visual learner? Master Livewire with our in-depth screencasts Watch now Livewire allows you to lazy load components that would otherwise slow down the initial page load. For example, imagine you have a `Revenue` component which contains a slow database query in `mount()`: ```php <?php namespace App\Livewire; use Livewire\Component; use App\Models\Transaction; class Revenue extends Component { public $amount; public function mount() { // Slow database query... $this->amount = Transaction::monthToDate()->sum('amount'); } public function render() { return view('livewire.revenue'); } } ``` ```php <div> Revenue this month: {{ $amount }} </div> ``` Without lazy loading, this component would delay the loading of the entire page and make your entire application feel slow. To enable lazy loading, you can pass the `lazy` parameter into the component: ```php <livewire:revenue lazy /> ``` Now, instead of loading the component right away, Livewire will skip this component, loading the page without it. Then, when the component is visible in the viewport, Livewire will make a network request to fully load this component on the page. Lazy requests are isolated by default Unlike other network requests in Livewire, lazy loading updates are isolated from each other when sent to the server. This keeps lazy loading fast, by loading each component in parallel when a page loads. Read more on disabling this behavior here → #Rendering placeholder HTML --------------------------- By default, Livewire will insert an empty `<div></div>` for your component before it is fully loaded. As the component will initially be invisible to users, it can be jarring when the component suddenly appears on the page. To signal to your users that the component is being loaded, you can define a `placeholder()` method to render any kind of placeholder HTML you like, including loading spinners and skeleton placeholders: ```php <?php namespace App\Livewire; use Livewire\Component; use App\Models\Transaction; class Revenue extends Component { public $amount; public function mount() { // Slow database query... $this->amount = Transaction::monthToDate()->sum('amount'); } public function placeholder() { return <<<'HTML' <div> <!-- Loading spinner... --> <svg>...</svg> </div> HTML; } public function render() { return view('livewire.revenue'); } } ``` Because the above component specifies a "placeholder" by returning HTML from a `placeholder()` method, the user will see an SVG loading spinner on the page until the component is fully loaded. The placeholder and the component must share the same element type For instance, if your placeholder's root element type is a 'div,' your component must also use a 'div' element. ### #Rendering a placeholder via a view For more complex loaders (such as skeletons) you can return a `view` from the `placeholder()` similar to `render()`. ```php public function placeholder(array $params = []) { return view('livewire.placeholders.skeleton', $params); } ``` Any parameters from the component being lazy loaded will be available as an `$params` argument passed to the `placeholder()` method. #Lazy loading outside of the viewport ------------------------------------- By default, Lazy-loaded components aren't full loaded until they enter the browser's viewport, for example when a user scrolls to one. If you'd rather lazy load all components on a page as soon as the page is loaded, without waiting for them to enter the viewport, you can do so by passing "on-load" into the `lazy` parameter: ```php <livewire:revenue lazy="on-load" /> ``` Now this component will load after the page is ready without waiting for it to be inside the viewport. #Passing in props ----------------- In general, you can treat `lazy` components the same as normal components, since you can still pass data into them from outside. For example, here's a scenario where you might pass a time interval into the `Revenue` component from a parent component: ```php <input type="date" wire:model="start"> <input type="date" wire:model="end"> <livewire:revenue lazy :$start :$end /> ``` You can accept this data in `mount()` just like any other component: ```php <?php namespace App\Livewire; use Livewire\Component; use App\Models\Transaction; class Revenue extends Component { public $amount; public function mount($start, $end) { // Expensive database query... $this->amount = Transactions::between($start, $end)->sum('amount'); } public function placeholder() { return <<<'HTML' <div> <!-- Loading spinner... --> <svg>...</svg> </div> HTML; } public function render() { return view('livewire.revenue'); } } ``` However, unlike a normal component load, a `lazy` component has to serialize or "dehydrate" any passed-in properties and temporarily store them on the client-side until the component is fully loaded. For example, you might want to pass in an Eloquent model to the `Revenue` component like so: ```php <livewire:revenue lazy :$user /> ``` In a normal component, the actual PHP in-memory `$user` model would be passed into the `mount()` method of `Revenue`. However, because we won't run `mount()` until the next network request, Livewire will internally serialize `$user` to JSON and then re-query it from the database before the next request is handled. Typically, this serialization should not cause any behavioral differences in your application. #Lazy load by default --------------------- If you want to enforce that all usages of a component will be lazy-loaded, you can add the `#[Lazy]` attribute above the component class: ```php <?php namespace App\Livewire; use Livewire\Component; use Livewire\Attributes\Lazy; #[Lazy] class Revenue extends Component { // ... } ``` If you want to override lazy loading you can set the `lazy` parameter to `false`: ```php <livewire:revenue :lazy="false" /> ``` ### #Disabling request isolation If there are multiple lazy-loaded components on the page, each component will make an independent network request, rather than each lazy update being bundled into a single request. If you want to disable this isolation behavior and instead bundle all updates together in a single network request you can do so with the `isolate: false` parameter: ```php <?php namespace App\Livewire; use Livewire\Component; use Livewire\Attributes\Lazy; #[Lazy(isolate: false)] class Revenue extends Component { // ... } ``` Now, if there are ten `Revenue` components on the same page, when the page loads, all ten updates will be bundled and sent the server as single network request. #Full-page lazy loading ----------------------- You may want to lazy load full-page Livewire components. You can do this by calling `->lazy()` on the route like so: ```php Route::get('/dashboard', \App\Livewire\Dashboard::class)->lazy(); ``` Or alternatively, if there is a component that is lazy-loaded by default, and you would like to opt-out of lazy-loading, you can use the following `enabled: false` parameter: ```php Route::get('/dashboard', \App\Livewire\Dashboard::class)->lazy(enabled: false); ``` #Default placeholder view ------------------------- If you want to set a default placeholder view for all your components you can do so by referencing the view in the `/config/livewire.php` config file: ```php 'lazy_placeholder' => 'livewire.placeholder', ``` Now, when a component is lazy-loaded and no `placeholder()` is defined, Livewire will use the configured Blade view (`livewire.placeholder` in this case.) #Disabling lazy loading for tests --------------------------------- When unit testing a lazy component, or a page with nested lazy components, you may want to disable the "lazy" behavior so that you can assert the final rendered behavior. Otherwise, those components would be rendered as their placeholders during your tests. You can easily disable lazy loading using the `Livewire::withoutLazyLoading()` testing helper like so: ```php <?php namespace Tests\Feature\Livewire; use App\Livewire\Dashboard; use Livewire\Livewire; use Tests\TestCase; class DashboardTest extends TestCase { /** @test */ public function renders_successfully() { Livewire::withoutLazyLoading() ->test(Dashboard::class) ->assertSee(...); } } ``` Now, when the dashboard component is rendered for this test, it will skip rendering the `placeholder()` and instead render the full component as if lazy loading wasn't applied at all. On this page * Rendering placeholder HTML + Rendering a placeholder via a view * Lazy loading outside of the viewport * Passing in props * Lazy load by default + Disabling request isolation * Full-page lazy loading * Default placeholder view * Disabling lazy loading for tests ![Flux Ad](/images/flux_ad.jpg) Pro UI Components Flux · The official Livewire component library Built by the folks behind Livewire and Alpine.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/brianirish/laravel-docs-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server