Files
akaunting/app/Exports/Sales/Sheets/InvoiceItems.php
2020-01-20 02:05:40 +03:00

34 lines
628 B
PHP

<?php
namespace App\Exports\Sales\Sheets;
use App\Abstracts\Export;
use App\Models\Sale\InvoiceItem as Model;
class InvoiceItems extends Export
{
public function collection()
{
$model = Model::usingSearchString(request('search'));
if (!empty($this->ids)) {
$model->whereIn('invoice_id', (array) $this->ids);
}
return $model->get();
}
public function fields(): array
{
return [
'invoice_id',
'item_id',
'name',
'quantity',
'price',
'total',
'tax',
];
}
}