get(); } public function map($model): array { return [ $model->type, $model->account_id, $model->paid_at, $model->amount, $model->currency_code, $model->currency_rate, $model->document_id, $model->contact_id, $model->payment_method, $model->reconciled, ]; } public function headings(): array { return [ 'type', 'account_id', 'paid_at', 'amount', 'currency_code', 'currency_rate', 'document_id', 'contact_id', 'payment_method', 'reconciled', ]; } public function title(): string { return 'transactions'; } }