This is my : IndexPageController
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Product;
class IndexPageController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
// $products = Product::inRandomOrder()->take(10)->get();
// return view('pages.index')->with('index', $products);
$products = Product ::inRandomOrder()->take(9)->get();
return view ('pages.index')->with('index',$products);
}
}