diff --git a/app/Traits/GenerateMigrationResources.php b/app/Traits/GenerateMigrationResources.php index 21ff2e0e5391..ee13478bd696 100644 --- a/app/Traits/GenerateMigrationResources.php +++ b/app/Traits/GenerateMigrationResources.php @@ -889,6 +889,8 @@ info("get company"); 'created_at' => $invitation->created_at ? Carbon::parse($invitation->created_at)->toDateString() : null, 'updated_at' => $invitation->updated_at ? Carbon::parse($invitation->updated_at)->toDateString() : null, 'deleted_at' => $invitation->deleted_at ? Carbon::parse($invitation->deleted_at)->toDateString() : null, + 'email_status' => '', + 'email_error' => '', ]; } diff --git a/resources/lang/en/texts.php b/resources/lang/en/texts.php index 89eb1dea148f..062a1828dc4b 100644 --- a/resources/lang/en/texts.php +++ b/resources/lang/en/texts.php @@ -4282,6 +4282,10 @@ $LANG = array( 'notification_credit_created_subject' => 'Credit :invoice was created to :client', 'notification_credit_created_subject' => 'Credit :invoice was created for :client', 'migration_create_account_notice' => 'Please ensure you have created an account on the new platform first here , please ensure that the credentials are identical to your v4 credentials. Once the account has been created, you can start the migration process here.', + 'auth' => 'Authentication', + 'companies' => 'Select companies for migration', + + ); return $LANG;