% layout 'admin'; % title 'Transactions'; % content_for javascript => begin % end % if ( my $error = flash 'error' ) { % } elsif ( my $success = flash 'success' ) { % }
% for my $transaction ( $transactions->all ) {
From: <%= $transaction->buyer->name %>
To: <%= $transaction->seller->name %>
Value: <%= $transaction->value %>
Submitted At: <%= $transaction->submitted_at %>
Purchase Time: <%= $transaction->purchase_time %>
% }
%= bootstrap_pagination( $c->param('page') || 1, $transactions->pager->last_page, { class => 'justify-content-center' } );