/** * Display a listing of the resource. * * @return Response */ public function index($id) { return $this->service->index($id); }
/** * Display a listing of the resource. * * @return Response */ public function index() { return $this->service->index(['project']); }
/** * Display a listing of the resource. * * @return Response */ public function index() { return $this->service->index(['notes', 'owner', 'client', 'members']); }