Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
O
onestartup-crm
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Angel Martin
onestartup-crm
Commits
3f09739b
Commit
3f09739b
authored
May 24, 2018
by
Angel MAS
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
exporta datatables
parent
86332c96
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
95 additions
and
37 deletions
+95
-37
README.md
README.md
+6
-0
AdminCrmController.php
src/AdminCrmController.php
+5
-2
InterestedDataTable.php
src/lib/InterestedDataTable.php
+79
-0
list.blade.php
src/views/list.blade.php
+5
-35
No files found.
README.md
View file @
3f09739b
...
...
@@ -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
...
...
src/AdminCrmController.php
View file @
3f09739b
...
...
@@ -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
()
...
...
src/lib/InterestedDataTable.php
0 → 100644
View file @
3f09739b
<?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'
);
}
}
src/views/list.blade.php
View file @
3f09739b
...
...
@@ -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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment