/** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public function index() { $brands = Brand::paginate(10); return view('brands.index')->with('brands', $brands)->with('auth_user', $this->auth_user); }