for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace MathieuTu\Exporter;
use Illuminate\Support\Collection;
trait Exporter
{
public function export(array $attributes): Collection
return ExporterService::exportFrom($this, $attributes);
}