从WHMCS API检索数据时,我收到如下错误:InvalidArgumentException View [SME_Hosting] not found

时间:2018-03-27 08:39:48

标签: laravel laravel-5 laravel-4

我已经创建了一个控制器,我的控制器文件中的编码如下所示

这是控制器代码

<?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

0 个答案:

没有答案