Edit File: BaseLayout.php
<?php namespace Livewire\Features\SupportPageComponents; use Livewire\Features\SupportAttributes\Attribute as LivewireAttribute; #[\Attribute] class BaseLayout extends LivewireAttribute { function __construct( public $name, public $params = [], ) {} }
Back