D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
dateitor
/
www
/
vendor
/
rappasoft
/
laravel-livewire-tables
/
src
/
Traits
/
Filename :
WithTableAttributes.php
back
Copy
<?php namespace Rappasoft\LaravelLivewireTables\Traits; use Closure; use Rappasoft\LaravelLivewireTables\Traits\Configuration\TableAttributeConfiguration; use Rappasoft\LaravelLivewireTables\Traits\Helpers\TableAttributeHelpers; trait WithTableAttributes { use TableAttributeConfiguration, TableAttributeHelpers; protected array $componentWrapperAttributes = []; protected array $tableWrapperAttributes = []; protected array $tableAttributes = []; protected array $theadAttributes = []; protected array $tbodyAttributes = []; protected $thAttributesCallback; protected $thSortButtonAttributesCallback; protected $trAttributesCallback; protected $tdAttributesCallback; protected $trUrlCallback; protected $trUrlTargetCallback; }