mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-19 02:47:36 +02:00
13 lines
209 B
PHP
13 lines
209 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Filament\Widgets;
|
|
|
|
use Filament\Widgets\TableWidget;
|
|
|
|
abstract class BaseTableWidget extends TableWidget
|
|
{
|
|
protected int|string|array $columnSpan = 'full';
|
|
}
|