E-Invoice - Project 27: Import Tax Entity, Customers Data Report

This commit is contained in:
Dillon Ngo
2025-07-23 18:36:02 +08:00
parent 2bdc0e1828
commit 58b8a7f089
@@ -53,7 +53,7 @@ class ExportsCompanies implements FromQuery, WithHeadings, WithHeadingRow, WithM
*/
public function query()
{
return Company::whereBetween('created_at', [$this->startDate, $this->endDate]);
return Company::whereBetween('e_invoice_requested_at', [$this->startDate, $this->endDate]);
}
/**