/**
  * Display a listing of the Brand.
  * GET|HEAD /brands
  *
  * @return Response
  */
 public function index()
 {
     $brands = $this->brandRepository->all();
     return $this->sendResponse($brands->toArray(), "Brands retrieved successfully");
 }