*/ public function allLinks(): Collection { return app(DocumentFactory::class)->getTypes()->map(function ($repo) { return [ 'link' => [ 'href' => route('sendpayment.pdf', ['type' => $repo]), 'label' => $repo::sendAllLabel(), ], 'text' => $repo::getDescription(), ]; }); } }