Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
vendor
/
livewire
/
livewire
/
src
/
Exceptions
:
MissingRulesException.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Livewire\Exceptions; class MissingRulesException extends \Exception { use BypassViewHandler; public function __construct($component) { parent::__construct( "Missing [\$rules/rules()] property/method on Livewire component: [{$component}]." ); } }