File tree 4 files changed +6
-12
lines changed
4 files changed +6
-12
lines changed Original file line number Diff line number Diff line change 36
36
"minimum-stability" : " dev" ,
37
37
"require" : {
38
38
"php" : " ^7.2" ,
39
- "illuminate/support" : " ^6.0" ,
39
+ "illuminate/support" : " ^6.0|^7.0 " ,
40
40
"doctrine/dbal" : " ^2.10" ,
41
41
"laravel/passport" : " ^8.0" ,
42
42
"codexshaper/database-backup-restore" : " ^1.1"
Original file line number Diff line number Diff line change 36
36
label =" name"
37
37
track-by =" name"
38
38
:preselect-first =" false"
39
- id =" update_relation"
40
- >
41
- </multiselect >
39
+ id =" update_relation" ></multiselect >
42
40
<multiselect
43
41
v-if =" field.relationship.relationType == 'belongsToMany'"
44
42
v-model =" newRow[field.relationship.relatedPivotKey]"
51
49
label =" name"
52
50
track-by =" name"
53
51
:preselect-first =" false"
54
- id =" update_belongs_to_many_relation"
55
- >
56
- </multiselect >
52
+ id =" update_belongs_to_many_relation" ></multiselect >
57
53
</div >
58
54
<div v-else-if =" field.type == 'dropdown' || field.type == 'multiple_dropdown'" >
59
55
<multiselect
68
64
label =" name"
69
65
track-by =" name"
70
66
:preselect-first =" false"
71
- id =" update_relation"
72
- >
73
- </multiselect >
67
+ id =" update_relation" ></multiselect >
74
68
</div >
75
69
<div v-else-if =" field.type == 'file' ||
76
70
field.type == 'image' ||
Original file line number Diff line number Diff line change 28
28
<div class =" main-content" >
29
29
<nav aria-label =" breadcrumb" >
30
30
<ol class =" breadcrumb" >
31
- <li class =" breadcrumb-item" v-for =" (breadcrumb,index) in $route.meta.breadcrumbs" >
31
+ <li class =" breadcrumb-item" v-for =" (breadcrumb,index) in $route.meta.breadcrumbs" :key = " index " >
32
32
<router-link
33
33
:to =" { name: breadcrumb.name }"
34
34
:class =" 'crumb-link'"
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ public function handle(Filesystem $filesystem)
80
80
81
81
$ this ->info ('Dumping the autoloaded files and reloading all new files ' );
82
82
$ composer = $ this ->findComposer ();
83
- $ process = new Process ($ composer .' dump-autoload ' );
83
+ $ process = Process:: fromShellCommandline ($ composer .' dump-autoload ' );
84
84
$ process ->setTimeout (null ); // Setting timeout to null to prevent installation from stopping at a certain point in time
85
85
$ process ->setWorkingDirectory (base_path ())->run ();
86
86
You can’t perform that action at this time.
0 commit comments