1

使用 Laravel 5.2,我正在生成一个发票列表,可以使用以下代码正常工作:

$owner = User::where("accountId",Auth::user()
->accountId)
->where("owner",1)
->first();
$invoices = $owner->invoices();

但是,当我尝试下载发票时

return $this->owner->downloadInvoice($id, [
    'vendor'  => 'XXXXXXX',
    'product' => 'XXXXXXX',
]);

我收到以下错误

0aba430056a58a8038d61445deab8578 第 133 行中的 FatalErrorException:调用未定义的方法 Laravel\Cashier\InvoiceItem::startDateString()

错误似乎来自收据模板中的这个块,但经过广泛的谷歌搜索后,我似乎找不到任何答案。

            <!-- Display The Subscriptions -->
            @foreach ($invoice->subscriptions() as $subscription)
                <tr>
                    <td>Subscription ({{ $subscription->quantity }})</td>
                    <td>{{ $subscription->startDateString() }} - {{ $subscription->endDateString() }}</td>
                    <td>{{ $subscription->dollars() }}</td>
                </tr>
            @endforeach

有任何想法吗?

4

1 回答 1

3

我相信发票模板来自旧版本的 Laravel。我已将模板更新为:

        @foreach ($invoice->subscriptions() as $subscription)
            <tr>
                <td>Subscription ({{ $subscription->quantity }})</td>
                <td>{{ $subscription->startDate() }} - {{ $subscription->endDate() }}</td>
                <td>{{ $subscription->total() }}</td>
            </tr>
        @endforeach

它似乎正在工作

于 2016-02-13T09:29:26.930 回答