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