質問編集履歴

1

TABLE タグ追加

2018/05/14 14:38

投稿

hrsi_teratail
hrsi_teratail

スコア93

test CHANGED
File without changes
test CHANGED
@@ -11,3 +11,151 @@
11
11
  テキストボックスの横に選択コンボボックスを
12
12
 
13
13
  揃えたいのですが、どのようにすれば揃いますか?
14
+
15
+
16
+
17
+ ```HTML
18
+
19
+ <tr>
20
+
21
+ <td data-toggle="tooltip" data-placement="left" title={{ '予約番号:'. $item->id }}>{{ $item->target_day }}
22
+
23
+ @if ($item->flgvalid_status == 2)
24
+
25
+ <br>
26
+
27
+ <p style="color: red;">(予約中)</p>
28
+
29
+ @endif
30
+
31
+
32
+
33
+ </td>
34
+
35
+ <td>{{ $child->getAgeToString($item->target_day) }}</td>
36
+
37
+
38
+
39
+ <td>
40
+
41
+ @foreach($vnames as $v)
42
+
43
+ {{ \App\Model\Vaccine::getVName($v)->name . '(' . ($item->getStreamsVaccine()[$loop->index]) . ')' }} @if(count($vnames) > 1) <br>@endif
44
+
45
+ @endforeach
46
+
47
+ </td>
48
+
49
+
50
+
51
+ <td>
52
+
53
+ @if (count($lots) != count($vnames))
54
+
55
+ @foreach($vnames as $v)
56
+
57
+ {!! Form::text('lots[]', null , ['id' => 'lot', 'class' => 'form-control', 'maxlength' => '20', 'placeholder' => '01234567890123456789']) !!}<br>
58
+
59
+ @endforeach
60
+
61
+ @else
62
+
63
+ @foreach($lots as $v)
64
+
65
+ @if ($v == 'null')
66
+
67
+ {{ $v = '' }}
68
+
69
+ @endif
70
+
71
+
72
+
73
+ {!! Form::text('lots[]', $v, ['id' => 'lot', 'class' => 'form-control', 'maxlength' => '20', 'placeholder' => '01234567890123456789']) !!}<br>
74
+
75
+ @endforeach
76
+
77
+ @endif
78
+
79
+
80
+
81
+ </td>
82
+
83
+ <td class="align-middle">
84
+
85
+
86
+
87
+ @if (count($points) != count($vnames))
88
+
89
+ @foreach($vnames as $v)
90
+
91
+ {!! Form::select('points[]',
92
+
93
+ [
94
+
95
+ null => '-- 選択 --',
96
+
97
+ '右腕' => '右腕',
98
+
99
+ '左腕' => '左腕',
100
+
101
+ '右足' => '右足',
102
+
103
+ '左足' => '左足',
104
+
105
+ ],
106
+
107
+ null,
108
+
109
+ ['id' => 'point']) !!}
110
+
111
+ @endforeach
112
+
113
+ @else
114
+
115
+ @foreach($points as $v)
116
+
117
+ @if ($v == 'null')
118
+
119
+ {{ $v = null }}
120
+
121
+ @endif
122
+
123
+ {!! Form::select('points[]',
124
+
125
+ [
126
+
127
+ null => '-- 選択 --',
128
+
129
+ '右腕' => '右腕',
130
+
131
+ '左腕' => '左腕',
132
+
133
+ '右足' => '右足',
134
+
135
+ '左足' => '左足',
136
+
137
+ ],
138
+
139
+ $v,
140
+
141
+ ['id' => 'point']) !!}<br>
142
+
143
+ @endforeach
144
+
145
+ @endif
146
+
147
+
148
+
149
+
150
+
151
+
152
+
153
+ </td>
154
+
155
+ <td>{{ $clinicname }}</td>
156
+
157
+
158
+
159
+
160
+
161
+ ```