我看到了有关使用laravel组件的教程,我想遵循它。 该组件是关于卡片和警报的 我正在使用laravel 5.4和php 7.0。 在资源上创建组件文件/查看下一步之后,我在AppServiceProvider.php上进行更改。 然后,当我运行php artisan服务时,会出现错误。
所以我建议laravel /程序无法识别有关组件的信息。
Call to undefined method Illuminate\View\Compilers\BladeCompiler::component()
AppServiceProvider.php
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
use Illuminate\Support\Facades\Schema;
use Illuminate\Support\Facades\Blade;
use Illuminate\View\Compilers\BladeCompiler;
class AppServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
Schema::defaultStringLength(191);
Blade::component('components.card','card');
Blade::component('components.alert','alert'); //
}
/**
* Register any application services.
*
* @return void
*/
public function register()
{
//
}
}
那么有什么办法解决这个问题吗?