Пример #1
0
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Contracts\Http\Response
  */
 public function index()
 {
     // Respond with pagination
     return $this->respond->setMeta(['version' => 1])->withPagination($this->model->with('author')->latest()->paginate(25), new ResourceTransformer());
     // Respond as a collection
     return $this->respond->setMeta(['version' => 1])->withCollection($this->model->with('author')->latest()->get(), new ResourceTransformer());
 }