norman-huth/markdown

v1.0.3 2023-10-14 09:09 UTC

This package is auto-updated.

Last update: 2024-04-14 10:06:50 UTC


README

Install

composer require norman-huth/markdown

Markdown Table Generator

Basic Usage

Create this table:

| ID | Name          |
|:---|:--------------|
| 1  | Administrator |
| 2  | User          |
| 4  | Hugo          |

Row for Row

use NormanHuth\Markdown\Table;

$table = new Table();

$table->addCell('ID');
$table->addCell('Name');

$table->addRow([1, 'John Doe']);
$table->addRow([2, 'Johanna Doe']);

echo $table->render();

Array or \Illuminate\Support\Collection

use NormanHuth\Markdown\Table;

$table = new Table();

$table->addCell('ID');
$table->addCell('Name');

$table->addRows(
    [
        [1, 'John Doe'],
        [2, 'Johanna Doe'],
    ]
);

echo $table->render();

Laravel Model Collection

use NormanHuth\Markdown\Table;

$table = new Table();
$table->addCell('ID');
$table->addCell('Name');
$table->addRows(\App\Models\User::all(['id', 'name']));

return $table->render();