@if ($billable->stripe_id && $billable->invoices()) @foreach ($billable->invoices() as $invoice) @foreach ($invoice->subscriptions() as $subscription) {{-- --}} @endforeach
    {{ trans('app.date') }} {{ trans('app.description') }} {{ trans('app.status') }} {{ trans('app.amount') }}  
    {{ $invoice->date()->toFormattedDateString() }}{{ \Carbon\Carbon::createFromTimestamp($invoice->asStripeInvoice()->created)->toFormattedDateString() }} {{ trans('app.invoice_for', ['start' => $subscription->startDateAsCarbon()->toFormattedDateString(), 'end' => $subscription->endDateAsCarbon()->toFormattedDateString()]) }} {{ trans('app.' . $invoice->status) }} {{ $invoice->total() }}
    @endforeach @else {{ trans('app.no_invoice') }} @endif