Using the `Attachable` interface to attach any kind of object to a mail in a Laravel app
Laravel 9 has gained a excellent new way to attach files in mails. Using the Attachable
interface, you can specify what should happen when an object gets used as an attachment.
Using our media library package you can easily associate any file with an Eloquent model. We've added support for Laravel's Attachable
in the latest version of the package.
In this blog post, I'd like to tell you all about it.