V1.3 Release
What's new?
- Audit logs
- Email Ticket Piping
- Ticket attachments
- Extension browser
- Added transactions overview to admin
- Added Bill To and Due Date to invoice
And many many more small tweaks and improvements. Read the full changelog here.
Audit logs
With audit logs you can track every change that happens to your Paymenter records:
- Who made the change
- What was changed
- When it happened
Email Ticket Piping
Customers can now directly reply to tickets via email. This makes it easier for your customers to get support without having to log in to the panel.
Ticket attachments
You can now attach files to tickets. This makes it easier to share screenshots or other files with your support team.
Even supports attachments via email piping! 👀
Extension browser
Tired of manually downloading and installing extensions? Now you can browse and install extensions directly from the admin panel.
Upgrading
To upgrade to this release, you can follow the instructions in the upgrade guide.
Developer notices
Changes in this release may affect your existing integrations. The following important changes have been made:
- The Filament package has been updated to version 4.0, if your extension uses admin resources or pages please review the Filament upgrade guide for any necessary changes.
canUseGateway
on gateways now passes the$total
,$currency
,$type
, and$items
parameters. This has changed from:$items
,$type
Upgrading extensions to Filament 4.0
WARNING
You only need to do this if your extension has admin pages or resources.
Paymenter already has Filament 4.0 installed, but your extension might still be on Filament 3.0. Lets upgrade your extension to Filament 4.0.
- Install filament/upgrade package
composer require filament/upgrade:"~4.0" -W --dev
- Run the upgrade command
vendor/bin/filament-v4 <path-to-your-extension>
So for example if your extension is in extensions/Others/Announcements
you would run:
vendor/bin/filament-v4 extensions/Others/Announcements