如何从日期范围期间添加星期几名称

How to add day of week name from daterange period

我正在使用 Laravel 和 Carbon。

我创建了一个函数来添加 'availability' 比如:

public function createAvailability(Request $request) {
    $availability = new Availability($request->all());
    $availability->save();

    return Redirect::back();
}

我发送 'start' 和 'end' 数据来请求,所以示例数据是:$request->start = '01/07/2018'; $request->end= '22/07/2018';

现在我在数据库中插入如下数据:

我想做的是像这样在数据库中插入数据:

所以对于前 7 天,我想插入具有相同 'start' 和 'end' 数据的名称...或者如果开始日期是 01/07 并且结束日期是 03/07我只想插入带有星期几名称的 3 天...

我该怎么做?

这也是我的可用性 class 受保护日期:

class Availability extends Model
{

    protected $dates = [ 'start','end' ];

    public function setStartAttribute($date) {
        $this->attributes['start']= Carbon::createFromFormat('d/m/Y', $date);
    }

    public function getStartAttribute($date){
        return (new Carbon($date))->format('d-m-Y');
    }

    public function setEndAttribute($date) {
        $this->attributes['end']= Carbon::createFromFormat('d/m/Y', $date);
    }

    public function getEndAttribute($date){
        return (new Carbon($date))->format('d-m-Y');
    }
}

我想这可能就是你想要的

function days($start, $end){
  $current = strtotime($start);
  $end = strtotime($end);
  while($current <= $end && $current <= ($current * 7))){ // go until the last day or seven days, whichever comes first
    $day = date("l", $current);
    $availability = new Availability();
    $availability->start_date = date('d/m/Y', $current);
    $availability->end_date = date('d/m/Y', $end);
    $availability->day_of_week = date("l", $current);
    $availability->save();
    $current = $current + 86400;
}
days($request->input('start'), $request->input('end'));