我正在使用一个名为Stolz的简单程序包来管理我的资产 每次我尝试在我的命名空间中使用Stolz时都会出错 主要课程
<?php
namespace Dashboard ;
use View;
use Stolz\Assets\ManagerServiceProvider ;
class IndexController extends BaseController {
public function Index()
{
$greeting = 'Welcome Here';
return View::make('dashboard.index')->with('hello',$greeting);
}
public function Dashboard(){
Assets::add('global/plugins/jquery.min.js');
return View::make('dashboard.dashboard');
}
}
错误
Class 'Dashboard\Assets' not found