<?php
$date = date('d/m/Y');
header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=pengguna.xls");
header("Pragma: no-cache");
header("Expires: 0");
?>
<table id="example2" class="table table-bordered table-hover">
<thead>
<tr>
<th>No</th>
<th>Name</th>
<th>Email</th>
<th>Role</th>
<th>Waktu Dibuat</th>
</tr>
</thead>
<tbody>
@foreach($datas as $data)
<tr>
<td>
{{ $no++ }}
</td>
<td>
{{ $data->name }}
</td>
<td>
{{ $data->email }}
</td>
<td>
{{ ($data->role == 0)?'User Biasa':'User Admin' }}
</td>
<td>
{{ $data->created_at }}
</td>
</tr>
@endforeach
</tbody>
</table>
Anons79 File Manager Version 1.0, Coded By Anons79
Email: [email protected]