Quick Html Table builder
composer require thipages\quicktable
through the static method create
create($headers,$cells,tableAttributes=[]);
$data=[
['Lucien',23],
['Paul',12],
['Hippolyte ',3]
];
$table=QTable::create(
['name','age'],
$data,
['border'=>1]
);
echo($table);