From 456bb7d1a9ae006c7cb513c23dfd09e0e93ba634 Mon Sep 17 00:00:00 2001 From: Arjay Angeles Date: Wed, 5 Jun 2024 20:48:38 +0800 Subject: [PATCH] docs: date --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1292279..b31c881 100644 --- a/README.md +++ b/README.md @@ -146,8 +146,9 @@ Using `withHeaders` will skip the first row of the CSV file. > 1. `withHeaders` must be called before the `into` method. > 2. This method assumes that the headers are the same as the table columns. > 3. Non-existent columns will be flagged as `FILLER`. -> 4. Date headers will be automatically detected and data type is appended as `DATE`. values must follow the default date format. -> 5. If the headers are different from the table columns, you should define the `columns` in the `into` method. +> 4. Date headers will be automatically detected and data type is appended in the control file. +> 5. Date values must follow the default date format. If not, use the `dateFormat` method. +> 6. If the headers are different from the table columns, you should define the `columns` in the `into` method. #### Building a CSV File from Eloquent Collection