@view('header', [ 'title' => 'Payment Links - Admin' ])

Payment Links

@if (count($payment_links) > 0): @view('pagination', [ 'page' => $page, 'last_page' => $last_page ])
@foreach ($payment_links as $payment_link):

{{ $payment_link->name }}

For: {{ $payment_link->account->name }}

Amount: {!! format_money($payment_link->amount) !!}

@endforeach
@view('pagination', [ 'page' => $page, 'last_page' => $last_page ]) @else:

There are no payment links found

@endif @view('footer')