-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathExtraGroupDataTable.php
127 lines (113 loc) · 3.4 KB
/
ExtraGroupDataTable.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<?php
namespace App\DataTables;
use App\Models\ExtraGroup;
use App\Models\CustomField;
use Yajra\DataTables\Services\DataTable;
use Yajra\DataTables\EloquentDataTable;
use Barryvdh\DomPDF\Facade as PDF;
class ExtraGroupDataTable extends DataTable
{
/**
* custom cuisines columns
* @var array
*/
public static $customFields = [];
/**
* Build DataTable class.
*
* @param mixed $query Results from query() method.
* @return \Yajra\DataTables\DataTableAbstract
*/
public function dataTable($query)
{
$dataTable = new EloquentDataTable($query);
$columns = array_column($this->getColumns(), 'data');
$dataTable = $dataTable
->editColumn('updated_at',function($extraGroup){
return getDateColumn($extraGroup,'updated_at');
})
->addColumn('action', 'extra_groups.datatables_actions')
->rawColumns(array_merge($columns, ['action']));
return $dataTable;
}
/**
* Get query source of dataTable.
*
* @param \App\Models\Post $model
* @return \Illuminate\Database\Eloquent\Builder
*/
public function query(ExtraGroup $model)
{
return $model->newQuery();
}
/**
* Optional method if you want to use html builder.
*
* @return \Yajra\DataTables\Html\Builder
*/
public function html()
{
return $this->builder()
->columns($this->getColumns())
->minifiedAjax()
->addAction(['title'=>trans('lang.actions'),'width' => '80px', 'printable' => false ,'responsivePriority'=>'100'])
->parameters(array_merge(
config('datatables-buttons.parameters'), [
'language' => json_decode(
file_get_contents(base_path('resources/lang/'.app()->getLocale().'/datatable.json')
),true)
]
));
}
/**
* Get columns.
*
* @return array
*/
protected function getColumns()
{
$columns = [
[
'data' => 'name',
'title' => trans('lang.extra_group_name'),
],
[
'data' => 'updated_at',
'title' => trans('lang.extra_group_updated_at'),
'searchable'=>false,
]
];
$hasCustomField = in_array(ExtraGroup::class, setting('custom_field_models',[]));
if ($hasCustomField) {
$customFieldsCollection = CustomField::where('custom_field_model', ExtraGroup::class)->where('in_table', '=', true)->get();
foreach ($customFieldsCollection as $key => $cuisine) {
array_splice($columns, $cuisine->order - 1, 0, [[
'data' => 'custom_fields.' . $cuisine->name . '.view',
'title' => trans('lang.extra_group_' . $cuisine->name),
'orderable' => false,
'searchable' => false,
]]);
}
}
return $columns;
}
/**
* Get filename for export.
*
* @return string
*/
protected function filename()
{
return 'extra_groupsdatatable_' . time();
}
/**
* Export PDF using DOMPDF
* @return mixed
*/
public function pdf()
{
$data = $this->getDataForPrint();
$pdf = PDF::loadView($this->printPreview, compact('data'));
return $pdf->download($this->filename().'.pdf');
}
}