laravel 我在 4 天之前在视图表中获取值如何保留一旦获取值在表中显示(如果日期在任何时间之后)
使用此代码我可以在视图表中获取 4 天之前的数据,我想在获取数据后显示它在视图表中的任何时间显示
$dueDate = Carbon::now()->addDays(4);
Payment::select( 'next_due_date')->whereDate('next_due_date', $dueDate)->get();
Using this code I'm able to get data before 4days in view table, I want to display once I get data it present show any time in view table
$dueDate = Carbon::now()->addDays(4);
Payment::select( 'next_due_date')->whereDate('next_due_date', $dueDate)->get();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果要保存状态,则有很多选择。
最方便和快速的方法是将它们保存在
缓存
或数据库
本身中。解决方案1:保存缓存:(如果您在
付款
表中没有太多行(如果您的行太多))解决方案2:保存DB(接收方式)
If you want to save the state you have many options.
Most convenient and fast ways are to save them in either
cache
ordatabase
itself.Solution 1: saving in cache: (Receomented if you won't have too many rows in
payments
table)Solution 2: saving in db (Receomented way)