From b7b6a15f62845095d048358ea72d82ab790b0f06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Burak=20=C3=87ak=C4=B1rel?= Date: Mon, 6 Jan 2020 13:49:23 +0300 Subject: [PATCH] Missing Contact Phone header in Bill and Invoice export file --- app/Exports/Purchases/Sheets/Bills.php | 3 ++- app/Exports/Sales/Sheets/Invoices.php | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/app/Exports/Purchases/Sheets/Bills.php b/app/Exports/Purchases/Sheets/Bills.php index f10792c4c..1a98909fb 100644 --- a/app/Exports/Purchases/Sheets/Bills.php +++ b/app/Exports/Purchases/Sheets/Bills.php @@ -67,6 +67,7 @@ class Bills implements FromCollection, ShouldAutoSize, WithHeadings, WithMapping 'contact_name', 'contact_email', 'contact_tax_number', + 'contact_phone', 'contact_address', 'notes', 'category_id', @@ -78,4 +79,4 @@ class Bills implements FromCollection, ShouldAutoSize, WithHeadings, WithMapping { return 'bills'; } -} \ No newline at end of file +} diff --git a/app/Exports/Sales/Sheets/Invoices.php b/app/Exports/Sales/Sheets/Invoices.php index a4a2bad9c..03aab856d 100644 --- a/app/Exports/Sales/Sheets/Invoices.php +++ b/app/Exports/Sales/Sheets/Invoices.php @@ -67,6 +67,7 @@ class Invoices implements FromCollection, ShouldAutoSize, WithHeadings, WithMapp 'contact_name', 'contact_email', 'contact_tax_number', + 'contact_phone', 'contact_address', 'notes', 'category_id', @@ -78,4 +79,4 @@ class Invoices implements FromCollection, ShouldAutoSize, WithHeadings, WithMapp { return 'invoices'; } -} \ No newline at end of file +}