我在Artisan Tinker中调用我的模型以获得最大stock_id
。在Tinker中,我不断遇到seg故障。
>>> $blah = new App\StockTwits;
=> <App\StockTwits #000000007beee62900000001069541f8> {}
>>> $blah::where('symbol', 'AAPL')->max('stock_id');
Segmentation fault: 11
有趣的是,如果我使用->min
或->count
,我的结果就会很好。