File "RootTagMissingFromViewException.php"

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

<?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."
        );
    }
}