I have created a controller and the coding in my controller file is as shown below
This is the controller code
<?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]);
}}
This is my Route
Route::get('/SME_Hosting','GetProductController@show');
I'm getting same error even after clearing the cache by using the below functions: php artisan config:cache php artisan config:clear
from Newest questions tagged laravel-5 - Stack Overflow https://ift.tt/2pI8HCL
via IFTTT
Aucun commentaire:
Enregistrer un commentaire