@subscriber @php $subscription = new \Wave\Http\Controllers\SubscriptionController; $transactions = $subscription->transactions( auth()->user() ); @endphp @if(count($transactions) > 0) @foreach($transactions as $transaction) @endforeach
Date of Invoice Price Receipt Link
{{ Carbon\Carbon::parse($transaction->created_at)->toFormattedDateString() }} {{ $transaction->details->totals->subtotal }} Generate Invoice
@else

You currently do not have any invoices associated with your account

@endif @notsubscriber

When you subscribe to a plan, this is where you will be able to download your invoices.

View Plans @endsubscriber