File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
6
6
7
+ ## [ 1.0.1] - 2025-05-14
8
+
9
+ ### Fixed
10
+
11
+ - Export itemValue instead of stval.
12
+
7
13
## [ 1.0.0] - 2025-05-09
8
14
9
15
_ Stable release based on [ 1.0.0-rc.1] ._
@@ -316,6 +322,7 @@ _Stable release based on [0.1.0-rc.1]._
316
322
317
323
- New changelog file.
318
324
325
+ [ 1.0.1 ] : https://https://github.com/internetguru/laravel-model-browser/compare/v1.0.0...v1.0.1
319
326
[ 1.0.0 ] : https://https://github.com/internetguru/laravel-model-browser/compare/v0.12.2...v1.0.0
320
327
[ 1.0.0-rc.1 ] : https://github.com/internetguru/laravel-model-browser/releases/tag/v0.12.2
321
328
[ 0.12.2 ] : https://https://github.com/internetguru/laravel-model-browser/compare/v0.12.1...v0.12.2
Original file line number Diff line number Diff line change 1
- 1.0.0
1
+ 1.0.1
Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ public function downloadCsv(): StreamedResponse
143
143
foreach ($ data as $ item ) {
144
144
$ row = [];
145
145
foreach ($ this ->viewAttributes as $ attribute => $ trans ) {
146
- $ row [] = prettyPrint (Arr:: get ( $ item , $ attribute) );
146
+ $ row [] = $ this -> itemValue ( $ item , $ attribute );
147
147
}
148
148
fputcsv ($ handle , $ row );
149
149
}
You can’t perform that action at this time.
0 commit comments