2
我嘗試在我的laravel項目中創建搜索表單。允許內存大小134217728字節用盡(試圖分配74735240字節)
所以我想所有的幾乎所有表列傳遞給視圖這樣我就可以這樣我就可以使用它們來創建保管箱的複選框等
但是當我使用它$var = Model::all();
返回此錯誤:
Allowed memory size of 134217728 bytes exhausted (tried to allocate 74735240 bytes)
你能否告訴我另一種解決方案?
這是我的控制器:
<?php
namespace App\Http\Controllers;
use App\Http\Requests;
use Illuminate\Http\Request;
use App\Lot;
class SearchController extends Controller
{
/**
* Create a new controller instance.
*
* @return void
*/
public function __construct()
{
$this->middleware('auth');
}
/**
* Show the application dashboard.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
$lots = Lot::all();
return view('lots.search')->withLot($lots);
}
}
謝謝!