File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 3
3
@error|before = <?php
4
4
if (isset($this->errors) && is_array($this->errors)) foreach($this->errors as $message) { ?>
5
5
6
- @error [data-v-notification-text] = $message
6
+ @error [data-v-notification-text] = < ?php echo $message ;? >
7
7
8
8
@error|after = < ?php
9
9
}
@@ -13,7 +13,7 @@ if (isset($this->errors) && is_array($this->errors)) foreach($this->errors as $m
13
13
@success|before = <?php
14
14
if (isset($this->success) && is_array($this->success)) foreach($this->success as $message) { ?>
15
15
16
- @success [data-v-notification-text] = $message
16
+ @success [data-v-notification-text] = < ?php echo $message ;? >
17
17
18
18
@success|after = < ?php
19
19
}
@@ -23,7 +23,7 @@ if (isset($this->success) && is_array($this->success)) foreach($this->success as
23
23
@warning|before = <?php
24
24
if (isset($this->warning) && is_array($this->warning)) foreach($this->warning as $message) { ?>
25
25
26
- @warning [data-v-notification-text] = $message
26
+ @warning [data-v-notification-text] = < ?php echo $message ;? >
27
27
28
28
@warning|after = < ?php
29
29
}
@@ -33,7 +33,7 @@ if (isset($this->warning) && is_array($this->warning)) foreach($this->warning as
33
33
@info|before = <?php
34
34
if (isset($this->info) && is_array($this->info)) foreach($this->info as $message) { ?>
35
35
36
- @info [data-v-notification-text] = $message
36
+ @info [data-v-notification-text] = < ?php echo $message ;? >
37
37
38
38
@info|after = < ?php
39
39
}
@@ -43,7 +43,7 @@ if (isset($this->info) && is_array($this->info)) foreach($this->info as $message
43
43
@message|before = <?php
44
44
if (isset($this->message) && is_array($this->message)) foreach($this->message as $message) { ?>
45
45
46
- @message [data-v-notification-text] = $message
46
+ @message [data-v-notification-text] = < ?php echo $message ;? >
47
47
48
48
@message|after = < ?php
49
49
}
You can’t perform that action at this time.
0 commit comments