관리-도구
편집 파일: CreateBladeView.php
<?php namespace Livewire; use Illuminate\View\Component; class CreateBladeView extends Component { public static function fromString($contents) { return (new static)->createBladeViewFromString(app('view'), $contents); } public function render() {} }