Your IP : 216.73.216.91


Current Path : /var/www/html/LLCF-APP/vendor/livewire/livewire/src/Exceptions/
Upload File :
Current File : /var/www/html/LLCF-APP/vendor/livewire/livewire/src/Exceptions/RootTagMissingFromViewException.php

<?php

namespace Livewire\Exceptions;

class RootTagMissingFromViewException extends \Exception
{
    use BypassViewHandler;

    public function __construct()
    {
        parent::__construct(
            'Livewire encountered a missing root tag when trying to render a ' .
            "component. \n When rendering a Blade view, make sure it contains a root HTML tag."
        );
    }
}