douou8954 2016-01-28 22:02
浏览 39

Laravel在日期之间

I have a table which gathers simple datetime in and datetime out for a user.

I'm using laravel to output the rows where indate_time is between specific date range.

From Date: 2016/01/28
To Date: 2016/01/28

Sample entry in my table

ID | indate_time          | outdate_time
1  | 2016-01-28 21:22:49  | 2016-01-28 21:46:05

At the moment Im getting no response here's my laravel query

$from = '2016/01/28';
$to = '2016/01/28';
$id = 1;

        $attendance = DB::table('attendances')
        ->whereBetween('indate_time', array($from, $to))->where('id', $id)->orderBy('indate_time', 'desc')
        ->get();
  • 写回答

2条回答 默认 最新

  • douzhengzuo7283 2016-01-28 22:10
    关注

    Can i recommend you using Carbon then you can do something like this:

    In your model

    public function getDaysUntilDeadlineAttribute()
    {   
        return Carbon\Carbon::now()->startOfDay()->diffInDays($this->outdate_time, false); // if you are past your deadline, the value returned will be negative.  
    }
    

    And then in your view:

    $model->days_until_deadline
    

    Remeber to include use Carbon; at the top

    评论

报告相同问题?

悬赏问题

  • ¥15 ETLCloud 处理json多层级问题
  • ¥15 matlab中使用gurobi时报错
  • ¥15 这个主板怎么能扩出一两个sata口
  • ¥15 不是,这到底错哪儿了😭
  • ¥15 2020长安杯与连接网探
  • ¥15 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么
  • ¥15 banner广告展示设置多少时间不怎么会消耗用户价值
  • ¥15 可见光定位matlab仿真
  • ¥15 arduino 四自由度机械臂
  • ¥15 wordpress 产品图片 GIF 没法显示