Skip to content

Commit

Permalink
docs(fields): Import / Export added information about ->withConfirm()…
Browse files Browse the repository at this point in the history
… sugar.
  • Loading branch information
skorneev committed Jul 22, 2024
1 parent c6df0f0 commit a4cb9a4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion resources/views/pages/en/resources/import_export.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -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]
}

//...
Expand Down
4 changes: 3 additions & 1 deletion resources/views/pages/ru/resources/import_export.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,9 @@ public function export(): ?ExportHandler
// Если необходимо экспортировать в формате csv
->csv() // [tl! focus]
// Разделитель для csv
->delimiter(','); // [tl! focus]
->delimiter(',') // [tl! focus]
// Экспорт с подтверждением
->withConfirm(); // [tl! focus]
}

//...
Expand Down

0 comments on commit a4cb9a4

Please sign in to comment.