css 如何在Tailwind中添加几个布局?

jogvjijk  于 2023-03-20  发布在  其他
关注(0)|答案(1)|浏览(175)

我尝试在Laravel项目中按照x-app-layout创建一个新布局,但收到错误:找不到组件[driven-layout]的类或视图。
我已经在resources/views/layout目录下创建了我的driven.blade.php。
但我的刀片式服务器页面找不到我的新布局。
我错了什么?

ioekq8ef

ioekq8ef1#

要以与x-app-layout相同的方式引用x-driven-layout,除了现有的blade文件外,还需要在app/View/Components/DrivenLayout.php中创建一个文件。

// app/View/Components/DrivenLayout.php
<?php

namespace App\View\Components;

use Illuminate\View\Component;
use Illuminate\View\View;

class DrivenLayout extends Component
{
    /**
     * Get the view / contents that represents the component.
     */
    public function render(): View
    {
        return view('layouts.driven');
    }
}

相关问题