Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 787 Bytes

table.md

File metadata and controls

36 lines (26 loc) · 787 Bytes

Table

Encore\Admin\Widgets\Table类用来生成表格:

use Encore\Admin\Widgets\Table;

// table 1
$headers = ['Id', 'Email', 'Name', 'Company'];
$rows = [
    [1, '[email protected]', 'Ms. Clotilde Gibson', 'Goodwin-Watsica'],
    [2, '[email protected]', 'Allie Kuhic', 'Murphy, Koepp and Morar'],
    [3, '[email protected]', 'Prof. Drew Heller', 'Kihn LLC'],
    [4, '[email protected]', 'William Koss', 'Becker-Raynor'],
    [5, '[email protected]', 'Ms. Antonietta Kozey Jr.'],
];

$table = new Table($headers, $rows);

echo $table->render();

// table 2
$headers = ['Keys', 'Values'];
$rows = [
    'name'   => 'Joe',
    'age'    => 25,
    'gender' => 'Male',
    'birth'  => '1989-12-05',
];

$table = new Table($headers, $rows);

echo $table->render();