22 lines
446 B
PHP
22 lines
446 B
PHP
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col" style="width:150px; text-allign:left;">#</th>
|
|
<th scope="col"></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<th scope="row">Name</th>
|
|
<td>{{ $name }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Email</th>
|
|
<td>{{ $sender_email }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Message</th>
|
|
<td>{{ $senders_message }}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table> |