mirror of
https://github.com/openclassify/openclassify.git
synced 2026-04-16 20:22:10 -05:00
15 lines
273 B
PHP
15 lines
273 B
PHP
<?php namespace Visiosoft\ProfileModule\EducationPart\Table;
|
|
|
|
use Anomaly\Streams\Platform\Ui\Table\TableBuilder;
|
|
|
|
class EducationPartTableBuilder extends TableBuilder
|
|
{
|
|
protected $buttons = [
|
|
'edit'
|
|
];
|
|
|
|
protected $actions = [
|
|
'delete'
|
|
];
|
|
}
|