File "PublicPropertyNotFoundException.php"
Full Path: /home/fundopuh/trader.fxex.org/vendor/livewire/livewire/src/Exceptions/PublicPropertyNotFoundException.php
File size: 350 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Livewire\Exceptions;
class PublicPropertyNotFoundException extends \Exception
{
use BypassViewHandler;
public function __construct($property, $component)
{
parent::__construct(
"Unable to set component data. Public property [\${$property}] not found on component: [{$component}]"
);
}
}