我想要做的是在我的请求中使用andWhere
<ScrollView
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/imageView"
android:layout_width="200dp"
android:layout_height="200dp"
android:src="@drawable/girl1" />
<TextView
android:layout_width="200dp"
android:layout_height="200dp"
android:id="@+id/textview"
android:maxLines="8"
android:scrollbars="vertical"
android:layout_alignTop="@+id/imageView"
android:layout_toEndOf="@+id/imageView"
android:layout_toRightOf="@+id/imageView"></TextView>
</ScrollView>
但是上面会返回一个错误。如何使用Model not DB:table执行此操作,因为我想通过使用模型来编写代码的标准方法。
答案 0 :(得分:1)
由于Eloquent模型是查询构建器,因此您应该查看查询构建器上可用的所有方法。您可以在Eloquent查询中使用这些方法中的任何一种。
$passwordreset = PasswordResets::where([
['token', $request->resetcode],
['created_at', '>', Carbon::now()->subHours(2)]
])->first();
API参考where()