<?php
namespace App\View\Components;
use Illuminate\View\Component;
class Admin.-newclubform extends Component
{
/**
* Create a new component instance.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\Contracts\View\View|\Closure|string
*/
public function render()
{echo "demo";
return view('components.admin.-newclubform');
}
}
我使用php artisan make:component Admin.Newclubform
命令在管理文件夹中创建组件。视图部分工作,但类被忽略。
php artisan make:component Admin.Newclubform 创建所有类和视图。类由 artisan 命令生成