diff --git a/resources/views/pages/en/resources/import_export.blade.php b/resources/views/pages/en/resources/import_export.blade.php index b0dcd228..363ef879 100644 --- a/resources/views/pages/en/resources/import_export.blade.php +++ b/resources/views/pages/en/resources/import_export.blade.php @@ -359,7 +359,9 @@ public function export(): ?ExportHandler // If you need to export in csv format ->csv() // [tl! focus] // Separator for csv - ->delimiter(','); // [tl! focus] + ->delimiter(',') // [tl! focus] + // Export with confirmation + ->withConfirm(); // [tl! focus] } //... diff --git a/resources/views/pages/ru/resources/import_export.blade.php b/resources/views/pages/ru/resources/import_export.blade.php index c008dd00..88ba9f3b 100644 --- a/resources/views/pages/ru/resources/import_export.blade.php +++ b/resources/views/pages/ru/resources/import_export.blade.php @@ -359,7 +359,9 @@ public function export(): ?ExportHandler // Если необходимо экспортировать в формате csv ->csv() // [tl! focus] // Разделитель для csv - ->delimiter(','); // [tl! focus] + ->delimiter(',') // [tl! focus] + // Экспорт с подтверждением + ->withConfirm(); // [tl! focus] } //...