我已经创建了一个控制器,我的控制器文件中的编码如下所示
这是控制器代码
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\View;
use DarthSoup\Whmcs\Facades\Whmcs;
use DarthSoup\Whmcs\WhmcsServiceProvider;
class GetProductController extends Controller
{
public function show(){
$products = Whmcs::GetProducts([
]);
return view('SME_Hosting',['products'=>$products]);
}}
这是我的路线
Route::get('/SME_Hosting','GetProductController@show');
即使在使用以下功能清除缓存后,我也会遇到相同的错误: php artisan config:cache php artisan config:clear