34 lines
624 B
PHP
34 lines
624 B
PHP
<?php
|
|
|
|
namespace App\Exports\Purchases\Sheets;
|
|
|
|
use App\Abstracts\Export;
|
|
use App\Models\Purchase\BillItem as Model;
|
|
|
|
class BillItems extends Export
|
|
{
|
|
public function collection()
|
|
{
|
|
$model = Model::usingSearchString(request('search'));
|
|
|
|
if (!empty($this->ids)) {
|
|
$model->whereIn('bill_id', (array) $this->ids);
|
|
}
|
|
|
|
return $model->get();
|
|
}
|
|
|
|
public function fields(): array
|
|
{
|
|
return [
|
|
'bill_id',
|
|
'item_id',
|
|
'name',
|
|
'quantity',
|
|
'price',
|
|
'total',
|
|
'tax',
|
|
];
|
|
}
|
|
}
|