|AccountLog newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|AccountLog newQuery() * @method static \Illuminate\Database\Eloquent\Builder|AccountLog query() * @method static \Illuminate\Database\Eloquent\Builder|AccountLog whereAction($value) * @method static \Illuminate\Database\Eloquent\Builder|AccountLog whereCreatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|AccountLog whereId($value) * @method static \Illuminate\Database\Eloquent\Builder|AccountLog whereIpAddress($value) * @method static \Illuminate\Database\Eloquent\Builder|AccountLog whereItemId($value) * @method static \Illuminate\Database\Eloquent\Builder|AccountLog whereItemType($value) * @method static \Illuminate\Database\Eloquent\Builder|AccountLog whereLink($value) * @method static \Illuminate\Database\Eloquent\Builder|AccountLog whereMessage($value) * @method static \Illuminate\Database\Eloquent\Builder|AccountLog whereMetadata($value) * @method static \Illuminate\Database\Eloquent\Builder|AccountLog whereUpdatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|AccountLog whereUserAgent($value) * @method static \Illuminate\Database\Eloquent\Builder|AccountLog whereUserId($value) * * @mixin \Eloquent */ class AccountLog extends Model { protected $guarded = []; public function user() { return $this->belongsTo(User::class); } }