livewire / volt

Volt is an elegantly crafted functional API for Livewire.
https://livewire.laravel.com/docs/volt
MIT License
327 stars 19 forks source link

[1.x] Adds `title` function #34

Closed nunomaduro closed 1 year ago

nunomaduro commented 1 year ago

This pull request addresses https://github.com/livewire/volt/issues/33, by allowing to set a title on the layout using the function title.

<?php

use function Livewire\Volt\{state, title};

title('custom title');

state(...);

// ...

?>

<div>
    <!-- template -->
</div>

Docs: https://github.com/livewire/livewire/pull/6517.

jdion84 commented 1 year ago

You rock so hard dude