File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -12,25 +12,25 @@ class ImportCsv extends Component
12
12
use WithFileUploads;
13
13
use InteractsWithColumns;
14
14
15
- /** @var string $model */
15
+ /** @var string */
16
16
public string $ model ;
17
17
18
- /** @var string $file */
18
+ /** @var string */
19
19
public string $ file ;
20
20
21
- /** @var array $columnsToMap */
21
+ /** @var array */
22
22
public array $ columnsToMap = [];
23
23
24
- /** @var array $requiredColumns */
24
+ /** @var array */
25
25
public array $ requiredColumns = [];
26
26
27
- /** @var array $columnLabels */
27
+ /** @var array */
28
28
public array $ columnLabels = [];
29
29
30
30
public function mount ()
31
31
{
32
32
$ this ->columnsToMap = $ this ->mapThroughColumns ();
33
-
33
+
34
34
$ this ->columnLabels = $ this ->mapThroughColumnLabels ();
35
35
36
36
$ this ->requiredColumns = $ this ->mapThroughRequiredColumns ();
Original file line number Diff line number Diff line change 118
118
'columnsToMap.name ' => 'name ' ,
119
119
'columnsToMap.email ' => 'email ' ,
120
120
]);
121
- });
121
+ });
You can’t perform that action at this time.
0 commit comments