Twinkle
Twinkle
Volt 1.6.0
この前書いたばかりのtitle()
の動的設定が追加された。
https://github.com/livewire/volt/releases/tag/v1.6.0
<?php
use App\Models\Post;
use function Livewire\Volt\mount;
use function Livewire\Volt\state;
use function Livewire\Volt\title;
state('post');
mount(function (Post $post) {
$this->post= $post;
});
title(fn () => $this->post->title);
?>