File "CannotBindToModelDataWithoutValidationRuleException.php"

Full Path: /home/fundopuh/trader.fxex.org/vendor/livewire/livewire/src/Exceptions/CannotBindToModelDataWithoutValidationRuleException.php
File size: 388 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Livewire\Exceptions;

class CannotBindToModelDataWithoutValidationRuleException extends \Exception
{
    use BypassViewHandler;

    public function __construct($key, $component)
    {
        parent::__construct(
            "Cannot bind property [$key] without a validation rule present in the [\$rules] array on Livewire component: [{$component}]."
        );
    }
}