亲爱的
我正在尝试创建一个基于laravel的项目,在那儿,我有一个部分来显示剩余的日子...我的数据库中有3个问题,
sub_end_date 是在jQuery的帮助下自动计算的。因此它将存储在db As 1-9-2020 (M-D-Y)中。 所以我的问题是我无法计算剩余的天数。.我用谷歌搜索并得到了一些类似的解决方案,我将在下面添加,但仅适用于一行(或最后添加的行),并在我的blade.php中页面,它在循环中显示相同的结果。
//subscription_details.blade.php
@extends('layouts.app')
@section('body')
<center>
</br>
<div class="col-lg-5">
<h4>subscribtion details</h4></br>
<table class="table table-hover">
<thead>
<tr>
<th scope="col">Name</th>
<th scope="col">Phone Number</th>
<th scope="col">Type Of Subscription</th>
<th scope="col">Start Date</th>
<th scope="col">End Date</th>
<th scope="col">Days Remaining</th>
</tr>
</thead>
<tbody>
<tr>
@foreach($customer as $row)
<th scope="row">{{$row->name}}</th>
<td>{{$row->phone}}</td>
<td>{{$row->subscription}}Month</td>
<td>{{$row->sub_start_date}}</td>
<td>{{$row->sub_end_date}}</td>
<td>{{$count}}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</center>
@endsection
我的控制器代码是
//SubscriptionController.php
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\customer;
use Carbon\Carbon ;
class SubscriptionController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
$now = Carbon::now();
$customer =customer::all();
foreach($customer as $row)
{
$end_date = $row->sub_end_date;
$cDate = Carbon::parse($end_date);
$count = $now->diffInDays($cDate );
}
return view('subscription_details',compact('customer','count'));
}
截至目前,iam正在获得此
订阅详细信息
结果就像 Sub_start日期= 2019-12-01 , Sub_end日期= 2019-12-01 剩余的天数是每个大棚的260天 请帮助我找到解决方法
答案 0 :(得分:0)
在客户模型中定义了mutator属性:
use Carbon\Carbon;
...
public function getRemainingDaysAttribute()
{
if ($this->sub_end_date) {
$remaining_days = Carbon::now()->diffInDays(Carbon::parse($this->sub_end_date));
} else {
$remaining_days = 0;
}
return $remaining_days;
}
然后在您的控制器中,吸引您的客户:
public function index()
{
$customer =customer::all();
return view('subscription_details',compact('customer'));
}
在您看来:
@foreach($customer as $row)
<th scope="row">{{$row->name}}</th>
<td>{{$row->phone}}</td>
<td>{{$row->subscription}}Month</td>
<td>{{$row->sub_start_date}}</td>
<td>{{$row->sub_end_date}}</td>
<td>{{$row->remaining_days}}</td>
</tr>
@endforeach