39 lines
796 B
PHP
39 lines
796 B
PHP
<?php
|
|
|
|
namespace App\Exports\Purchases;
|
|
|
|
use App\Abstracts\Export;
|
|
use App\Models\Banking\Transaction as Model;
|
|
|
|
class Payments extends Export
|
|
{
|
|
public function collection()
|
|
{
|
|
$model = Model::type('expense')->usingSearchString(request('search'));
|
|
|
|
if (!empty($this->ids)) {
|
|
$model->whereIn('id', (array) $this->ids);
|
|
}
|
|
|
|
return $model->get();
|
|
}
|
|
|
|
public function fields(): array
|
|
{
|
|
return [
|
|
'paid_at',
|
|
'amount',
|
|
'currency_code',
|
|
'currency_rate',
|
|
'account_id',
|
|
'document_id',
|
|
'contact_id',
|
|
'category_id',
|
|
'description',
|
|
'payment_method',
|
|
'reference',
|
|
'reconciled',
|
|
];
|
|
}
|
|
}
|