0
私はデータのリストを表示するために、次のクエリを使用していますが、ここでは制限が機能していません。制限がクエリcakephp 3で動作していません
$query = $this->Bookings->find('all')
->where(['Bookings.user_id' => $id])
->contain(['Services'])
->limit(10)
->orderDesc('booking_date');
$this->set('bookings', $this->paginate($query));
$this->set('_serialize', ['bookings']);
ただし、各ページに10個のデータのリストは表示されません。
は '入れてみてください - > orderDesc( 'booking_date') - >リミット(10)'; –