isBulkEdit) {
            $table->addColumn('checkbox', function ($model) use ($datatable) {
                $can_edit = Auth::user()->hasPermission('edit_' . $datatable->entityType) || (isset($model->user_id) && Auth::user()->id == $model->user_id);
                return ! $can_edit ? '' : '';
            });
        }
        foreach ($datatable->columns() as $column) {
            // set visible to true by default
            if (count($column) == 2) {
                $column[] = true;
            }
            list($field, $value, $visible) = $column;
            if ($visible) {
                $table->addColumn($field, $value);
                $orderColumns[] = $field;
            }
        }
        if (count($datatable->actions())) {
            $this->createDropdown($datatable, $table);
        }
        return $table->orderColumns($orderColumns)->make();
    }
    /**
     * @param EntityDatatable $datatable
     * @param Table           $table
     */
    private function createDropdown(EntityDatatable $datatable, $table)
    {
        $table->addColumn('dropdown', function ($model) use ($datatable) {
            $hasAction = false;
            $str = '
';
            $can_edit = Auth::user()->hasPermission('edit_' . $datatable->entityType) || (isset($model->user_id) && Auth::user()->id == $model->user_id);
            if (property_exists($model, 'is_deleted') && $model->is_deleted) {
                $str .= '';
            } elseif ($model->deleted_at && $model->deleted_at !== '0000-00-00') {
                $str .= '';
            } else {
                $str .= '';
            }
            $dropdown_contents = '';
            $lastIsDivider = false;
            if (! property_exists($model, 'is_deleted') || ! $model->is_deleted) {
                foreach ($datatable->actions() as $action) {
                    if (count($action)) {
                        // if show function isn't set default to true
                        if (count($action) == 2) {
                            $action[] = function () {
                                return true;
                            };
                        }
                        list($value, $url, $visible) = $action;
                        if ($visible($model)) {
                            if ($value == '--divider--') {
                                $dropdown_contents .= '';
                                $lastIsDivider = true;
                            } else {
                                $urlVal = $url($model);
                                $urlStr = is_string($urlVal) ? $urlVal : $urlVal['url'];
                                $attributes = '';
                                if (! empty($urlVal['attributes'])) {
                                    $attributes = ' '.$urlVal['attributes'];
                                }
                                $dropdown_contents .= "{$value}";
                                $hasAction = true;
                                $lastIsDivider = false;
                            }
                        }
                    } elseif (! $lastIsDivider) {
                        $dropdown_contents .= '';
                        $lastIsDivider = true;
                    }
                }
                if (! $hasAction) {
                    return '';
                }
                if ($can_edit && ! $lastIsDivider) {
                    $dropdown_contents .= '';
                }
                if (! $model->deleted_at || $model->deleted_at == '0000-00-00') {
                    if (($datatable->entityType != ENTITY_USER || $model->public_id) && $can_edit) {
                        $dropdown_contents .= "entityType}('archive', {$model->public_id})\">"
                                . mtrans($datatable->entityType, "archive_{$datatable->entityType}") . '';
                    }
                }
            }
            if ($model->deleted_at && $model->deleted_at != '0000-00-00' && $can_edit) {
                $dropdown_contents .= "entityType}('restore', {$model->public_id})\">"
                    . mtrans($datatable->entityType, "restore_{$datatable->entityType}") . '';
            }
            if (property_exists($model, 'is_deleted') && ! $model->is_deleted && $can_edit) {
                $dropdown_contents .= "entityType}('delete', {$model->public_id})\">"
                        . mtrans($datatable->entityType, "delete_{$datatable->entityType}") . '';
            }
            if (! empty($dropdown_contents)) {
                $str .= '
                    
                    ';
            }
            return $str.'
';
        });
    }
}