PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
livewire
/
livewire
/
src
/
Features
/
SupportPageComponents
/
Editing: MissingLayoutException.php
<?php namespace Livewire\Features\SupportPageComponents; use Exception; class MissingLayoutException extends Exception { function __construct(string $layout) { parent::__construct('Livewire page component layout view not found: ['.$layout."]"); } }
SAVE
CANCEL