laravel:检查用户今天在 laravel 中使用 carbon 今天收到的电子邮件

laravel: check the user received email today in laravel using carbon today

我想检查用户当天是否收到了电子邮件。我已经创建了 DB table(名称为 Email Save)来检测电子邮件是否发送。所以我尝试在这个

中使用 if 语句
if (EmailSave::where('created_at')-> Carbon::today()) {

这个没用。任何人都可以提供帮助。我在这里给出我的代码

你的语法错误。

变化:

if (EmailSave::where('created_at')-> Carbon::today()) {

收件人:

if (EmailSave::where('created_at', Carbon::today())->exists()) {

文档:

  1. https://laravel.com/docs/5.8/eloquent#retrieving-models
  2. https://laravel.com/docs/5.8/queries#aggregates