I have the following error :
Symfony\Component\Debug\Exception\FatalThrowableError
Call to undefined method App\Shop::getItems()
Shop.php
public function getItems()
{
foreach ($this->items as $item) {
//$coverUrl = "https://SomeCoverUrl";
$productId = $item['id'];
$coverUrl = Product::find($productId)->images()->where('type', 'like', '%cover%')->get()->first();
if (empty($coverUrl)) {
$coverUrl = "https://via.placeholder.com/300C/O%20https://placeholder.com/";
} else {
$coverUrl = $coverUrl->img_url;
}
$item['cover'] = $coverUrl;
$platformName = Product::find($productId)->platform()->get()->first()->platform;
$item['platform'] = $platformName;
$item['region'] = Product::find($productId)->regions()->get()->first()->region;
//Pricecalculation
$priceArr = [];
$countPrice = 0;
foreach (Currency::all() as $currency) {
//Symbol
$priceArr[$countPrice][0] = number_format($item->price_100 * 1.49 * $currency->exchange_rate, 2);
//value
$priceArr[$countPrice][1] = $currency->symbol;
$countPrice++;
}
$item['price'] = $priceArr;
}
return $this->items;
}
ProductController.php
public function searchBar($search)
{
$search = str_replace('-', ' ', $search);
$product = Product::where('title', 'like', '%' . $search . '%')->paginate(10);
$shop = new Shop($product);
return $shop->getItems();
}
Yesterday the function works fine.
Now all functions of Shop Object do not work.
Already run following commands on commandline :
composer dump-autoload
php artisan clear-compiled
php artisan cache:clear
Any solution ?
EDIT :
Shop.php
public function something()
{
return 1;
}
ProductController.php
$shop = new Shop();
$shop->something();
Returns the same error "Call to undefined method"
use App\Shop
in controller – Meera Tank$shop
var whether it instantiated rightly – Sumit Wadhwa