/**
  * @return mixed
  */
 public function index()
 {
     $blocoTecidoDestaque = $this->repository->all();
     return $this->apiController->respondWithCollection($blocoTecidoDestaque, $this->blocoTecidoDestaqueTransformer);
 }
Пример #2
0
 /**
  * @return mixed
  */
 public function index()
 {
     $tecimage = $this->repository->all();
     return $this->apiController->respondWithCollection($tecimage, new TecimageTransformer());
 }
 /**
  * @return mixed
  */
 public function index()
 {
     $blocoDoisDestaqueUm = $this->repository->all();
     return $this->apiController->respondWithCollection($blocoDoisDestaqueUm, $this->blocoDoisDestaqueUmTransformer);
 }
Пример #4
0
 public function index()
 {
     $blocodois = $this->repository->all();
     return $this->apiController->respondWithCollection($blocodois, new BlocoDoisTransformer());
 }