fakhruz85/sample-amtis

Generate html element template

dev-main 2021-11-12 04:18 UTC

This package is not auto-updated.

Last update: 2024-10-12 17:53:46 UTC


README

Generate html element template

Installation

This project using composer.

$ composer require fakhruz85/sample-amtis

Usage

Generate html element template.

<?php

use SampleAmtis\Htmlv2\Table;

$data = [['1','2','3'],['1','2','3']];
$table = new Table();
$table->generate($data);