Commit 3f09739b by Angel MAS

exporta datatables

parent 86332c96
......@@ -30,6 +30,12 @@ public function tracings()
return $this->hasMany('Onestartup\Crm\Tracing', 'interested_id');
}
```
- for version 0.0.7 install plugin buttons datatable in base project
```
[https://yajrabox.com/docs/laravel-datatables/master/buttons-installation](https://yajrabox.com/docs/laravel-datatables/master/buttons-installation)
```
- run serv
```php
php artisan serve
......
......@@ -8,13 +8,16 @@ use App\Http\Controllers\Controller;
use Yajra\Datatables\Datatables;
use App\Interested;
use Onestartup\Crm\Tracing;
use Onestartup\Crm\DataTables\InterestedDataTable;
class AdminCrmController extends Controller
{
public function list()
public function list(InterestedDataTable $dataTable)
{
return view('crm::list');
return $dataTable->render('crm::list');
//return view('crm::list');
}
public function datatable()
......
<?php
namespace Onestartup\Crm\DataTables;
use App\Interested;
use Yajra\DataTables\Services\DataTable;
class InterestedDataTable extends DataTable
{
/**
* Build DataTable class.
*
* @param mixed $query Results from query() method.
* @return \Yajra\DataTables\DataTableAbstract
*/
public function dataTable($query)
{
return datatables($query)
->addColumn('action', function(Interested $interested) {
return "<a href='".route('crm.show',$interested->id)."'>Ver Detalle</a>";
});
//->addColumn('action', 'interested.action');
}
/**
* Get query source of dataTable.
*
* @param \App\Interested $model
* @return \Illuminate\Database\Eloquent\Builder
*/
public function query(Interested $model)
{
return $model->select(['id','name','email', 'phone','landing','origin','created_at'])->orderBy('id', 'desc');
}
/**
* Optional method if you want to use html builder.
*
* @return \Yajra\DataTables\Html\Builder
*/
public function html()
{
return $this->builder()
->columns($this->getColumns())
->parameters([
'dom' => 'Bfrtip',
'buttons' => ['excel', 'csv','reset', 'reload'],
]);
}
/**
* Get columns.
*
* @return array
*/
protected function getColumns()
{
return [
'id',
'name',
'email',
'phone',
'landing',
'origin',
'created_at',
'action'
];
}
/**
* Get filename for export.
*
* @return string
*/
protected function filename()
{
return 'Interested_' . date('YmdHis');
}
}
......@@ -11,20 +11,7 @@
<div class="box-body">
<div class='table-responsive'>
<table class='table table-striped b-t b-b table-hover' id='registros'>
<thead>
<tr>
<th>Id</th>
<th>Nombre</th>
<th>Correo</th>
<th>Teléfono</th>
<th>Landing</th>
<th>Origin</th>
<th>Fecha de registro</th>
<th>URL</th>
</tr>
</thead>
</table>
{!! $dataTable->table() !!}
</div>
</div>
......@@ -39,25 +26,8 @@
@endsection
@push('scripts')
<script>
$(function() {
$('#registros').DataTable({
processing: true,
serverSide: true,
pageLength: 25,
ajax: '{{ route("crm.datatable") }}',
columns: [
{data: 'id', name: 'id'},
{data: 'name', name: 'name'},
{data: 'email', name: 'email'},
{data: 'phone', name: 'phone'},
{data: 'landing', name: 'landing'},
{data: 'origin', name: 'origin'},
{data: 'created_at', name: 'created_at'},
{data: 'details_url', name: 'details_url'}
]
});
});
</script>
<link rel="stylesheet" href="https://cdn.datatables.net/buttons/1.0.3/css/buttons.dataTables.min.css">
<script src="https://cdn.datatables.net/buttons/1.0.3/js/dataTables.buttons.min.js"></script>
<script src="/vendor/datatables/buttons.server-side.js"></script>
{!! $dataTable->scripts() !!}
@endpush
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment