hnhdigital-os/laravel-html-builder

View on GitHub
src/Tag/Table.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace HnhDigital\LaravelHtmlBuilder\Tag;

use HnhDigital\LaravelHtmlBuilder\Tag;

class Table extends Tag
{
    protected $tag = 'table';
    protected $allowed_tags = ['tbody', 'thead', 'tr'];
}