17 lines
504 B
PHP
17 lines
504 B
PHP
<?php
|
|
// header("Content-type: application/vnd.ms-excel");
|
|
// header("Content-Disposition: attachment; filename=Data {$dataset->name}.xls");
|
|
// header("Pragma: no-cache");
|
|
?>
|
|
|
|
<table border="1" width="100%">
|
|
|
|
<tr style="vertical-align:middle;">
|
|
|
|
@if (!empty($data))
|
|
@foreach ($data[0] as $k => $key)
|
|
<td style="background:#ddd;">{{ ucwords(str_replace('_', ' ', $k)) }}</td>
|
|
@endforeach
|
|
@endif
|
|
</tr>
|
|
</table>
|