PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
livewire
/
livewire
/
src
/
Features
/
SupportComputed
/
Editing: CannotCallComputedDirectlyException.php
<?php namespace Livewire\Features\SupportComputed; use Exception; class CannotCallComputedDirectlyException extends Exception { function __construct($componentName, $methodName) { parent::__construct( "Cannot call [{$methodName}()] computed property method directly on component: {$componentName}" ); } }
SAVE
CANCEL