我将我的laravel应用程序从4迁移到5,我遇到了此查询的问题:
this
其中$ custom是一个id数组。
laravel抛出的错误就是这个。
$ids = AssetCustomTag::whereIn('custom_tag_id', $custom)->lists('asset_id')->all();
不确定这意味着什么,因为我对laravel很新。
这是创建方法。我需要做些什么呢?
Declaration of AssetCustomTag::create(array $input) should be compatible with Illuminate\Database\Eloquent\Model::create(array $attributes = Array)