Laravel集合在foreach循环内变成空

时间:2019-03-31 15:02:16

标签: php laravel eloquent

我在不同的项目上有3个集合,我需要显示这些集合并按日期进行分组,在刀片文件中,我遍历日期以显示这些集合,但是由于某些原因,无论第一个集合是什么,都会发生错误,它不应该根据日期而改变,假设我有两个日期(2019-03,2019-01),最后我得到了同一集合的两个不同实例,一个带有数据,即使我在调用相同的变量,也没有(空集合)。

控制器方法:

public function index()
{
    //Retrieving the Models.
    $invoices_egp = auth()->user()->invoices()->where('paid', 1)->where('currency', 'EGP');
    $invoices_usd = auth()->user()->invoices()->where('paid', 1)->where('currency', 'USD');
    $orders = \App\Order::where('vendor_id', auth()->user()->id)->where('paid', 1);

    //Getting the different dates of these Models.
    $egp_invoices_dates = $invoices_egp->get()->map(function ($invoice) {
        return Carbon::parse($invoice->created_at)->format('Y-m');
    });
    $usd_invoices_dates = $invoices_usd->get()->map(function ($invoice) {
        return Carbon::parse($invoice->created_at)->format('Y-m');
    });
    $orders_dates = $orders->get()->map(function ($order) {
        return Carbon::parse($order->created_at)->format('Y-m');
    });

    //Getting the unique dates.
    $dates = $orders_dates->merge($usd_invoices_dates)->merge($egp_invoices_dates)->unique();

    return view('dashboard.vendor.reports.index', compact('invoices_egp', 'invoices_usd', 'orders', 'dates'));
}

刀片文件的相关部分:

<div class="col-lg-12">
    @if ( count( $dates ) )
    @foreach($dates as $date)
        <div class="card-box">
            <div class="table-responsive">
                <table class="table table-actions-bar m-b-0">
                    <thead>
                        <tr>
                            <th>
                                Month
                            </th>
                        </tr>
                        <tr>
                            <td>
                                {{ $date }}
                            </td>
                        </tr>
                    </thead>
                    <tbody>
                        <tr>
                            <th colspan="100%">Type</th>
                            <th>Total</th>
                        </tr>
                        <tr>
                            @if(count($invoices_egp->get()))
                                <td colspan="100%">Invoice in EGP</td>
                                <td>{{ $invoices_egp->whereYear('paid_at', \Carbon\Carbon::parse($date)->year)->whereMonth('paid_at', \Carbon\Carbon::parse($date)->month)->sum('total') }}</td>
                            @endif
                        </tr>
                        <tr>
                            @if(count($invoices_usd->get()))
                                <td colspan="100%">Invoice in USD</td>
                                <td>{{ $invoices_usd->whereYear('paid_at', \Carbon\Carbon::parse($date)->year)->whereMonth('paid_at', \Carbon\Carbon::parse($date)->month)->sum('total') * \App\ConversionRate::dollarToEGP() }}</td>
                            @endif
                        </tr>
                        <tr>
                            @if(count($orders->get()))
                                <td colspan="100%">Orders</td>
                                <td>{{ $orders->whereYear('paid_at', \Carbon\Carbon::parse($date)->year)->whereMonth('paid_at', \Carbon\Carbon::parse($date)->month)->sum('total') }}</td>
                            @endif
                        </tr>
                    </tbody>
                </table>
            </div>
        </div>
    @endforeach
    @else
    <div class="card-box">
        <h3>No Data</h3>
    </div>
    @endif
</div>

在这里,当我循环$ dates变量时,由于某种原因, $ invoices_egp 变量会根据日期而变化,即使它与转储无关,即使它与日期无关在每个循环上 $ invoices_egp (具有两条记录的相同日期为2019-01),无论日期如何,我都希望两次获得两条记录,而我会在第一个循环中获得两条记录($ date = 2019-03 ),在第二个循环中($ date = 2019-01 ),我得到了一个空集合。

我尝试了其他方法,我用硬编码数组替换了date变量,并删除了其他日期查询,刀片文件中没有任何变化。

甚至更奇怪的是,如果我用$ invoices_usd更改$ invoices_egp的位置,我会正确渲染$ invoices_egp,而该错误恰好发生在$ invoices_usd变量上,因此无论第一个变量如何是,它搞砸了。

小更新

我还不知道怎么了,但是当我注释掉这一行

<td>{{ $invoices_egp->whereYear('paid_at', \Carbon\Carbon::parse($date)->year)->whereMonth('paid_at', \Carbon\Carbon::parse($date)->month)->sum('total') }} EGP</td>

对于每个循环实例,我都会正确地两次获得变量渲染,这应该发生。我要评论的这一行应该对是否应该成功检索集合没有任何影响,我希望感。

如果我在每个循环中转储变量,这就是我在第一个循环中得到的结果

Collection {#522 ▼
  #items: array:2 [▼
    0 => Invoice {#526 ▶}
    1 => Invoice {#519 ▶}
  ]
}

这是我在第二个循环中得到的(上述行未注释)

Collection {#516 ▼
  #items: []
}

同一变量,一个循环的结果不同。

1 个答案:

答案 0 :(得分:0)

显然,由于我将查询生成器实例传递给视图,因此实际上被foreach循环更改了,这是我从未想到过的事情,无论如何,修复很容易那时,只需要从这里开始更改代码即可:

import { cache } from 'lit-html/directives/cache';
[…]
render() {
  return html`${cache(
    condition ?
    () => html`Your TRUE HTML here` :
    () => html`Your FALSE HTML here`
  )}`;
}

在视图中,我只需要更改所有三个查询的过滤查询,就像这样:

return redirect($this->redirectPath())->with('message', ['my msg']);