/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $manufacturers = $this->manufacturerRepository->all();
     return view('manufacturers.index', compact('manufacturers'));
 }