51 lines
1.3 KiB
PHP
51 lines
1.3 KiB
PHP
@extends('testIdiota')
|
|
|
|
@section('idiota')
|
|
<h2>Teste idiota</h2>
|
|
|
|
<table id="example" class="table table-striped table-bordered" style="width:100%">
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Position</th>
|
|
<th>Office</th>
|
|
<th>Age</th>
|
|
<th>Start date</th>
|
|
<th>Salary</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>Tiger Nixon</td>
|
|
<td>System Architect</td>
|
|
<td>Edinburgh</td>
|
|
<td>61</td>
|
|
<td>2011-04-25</td>
|
|
<td>$320,800</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Garrett Winters</td>
|
|
<td>Accountant</td>
|
|
<td>Tokyo</td>
|
|
<td>63</td>
|
|
<td>2011-07-25</td>
|
|
<td>$170,750</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
@endsection
|
|
|
|
@section('idiotaScripts')
|
|
<script>
|
|
$(function() {
|
|
$("#example").DataTable({
|
|
"responsive": true,
|
|
"lengthChange": false,
|
|
"autoWidth": false,
|
|
"buttons": ["copy", "csv", "excel", "pdf", "print", "colvis"]
|
|
}).buttons().container().appendTo('#example_wrapper .col-md-6:eq(0)');
|
|
});
|
|
</script>
|
|
@endsection
|