im newbie Laravel、YajraBox拡張子のデータテーブルを作成しようとしています。DataTables YajraBox Eloquentクエリ文字列フィルタリングを使用したLaravel拡張
ImはAjaxのコントローラーに貼り付け:
public function indexData(LotFilters $filters)
{
$lots = Lot::filter($filters)->get();
return Datatables::of($lots)->make(true);
}
をこれは私のルートです:
Route::get('data', '[email protected]');
私が行くとき:http://127.0.0.1:8000/data
それは私にエラーを与える:
Allowed memory size of 134217728 bytes exhausted (tried to allocate 140673944 bytes)
それが思う、私はページネーションを設定する必要がありますが、私はそれを行う方法の例を見つけられませんでした、多分あなたたちは私を助けることができますか?