Edit File: DirectlyCallingLifecycleHooksNotAllowedException.php
<?php namespace Livewire\Features\SupportLifecycleHooks; use Livewire\Exceptions\BypassViewHandler; class DirectlyCallingLifecycleHooksNotAllowedException extends \Exception { use BypassViewHandler; public function __construct($method, $component) { parent::__construct( "Unable to call lifecycle method [{$method}] directly on component: [{$component}]" ); } }
Back