Hi, all
It's work in pure php file of my laravel project like controller.php, but not work in *.blade.php.

here is an example, test.blade.php
<?php
use Livewire\Volt\Component;
new #[Layout('layouts.guest')] class extends Component{
public string $message = "hello TALL stack";
}; ?>
<div class="flex flex-col gap-4 w-1/2 sm:w-full pb-[50px]">
<div class="" wire:online>hello world</div>
@if (true)
<div></div>
@endif
</div>