> Source: https://laravilt.com/docs/tables/display/introduction

# Table Display

Table and grid view display options.

## Display Modes

| Mode | Description |
|------|-------------|
| Table View | Default row-based display |
| [Grid View](https://github.com/laravilt/laravilt/blob/HEAD/docs/tables/display/grid-view) | Card-based grid layout |
| [Cards](https://github.com/laravilt/laravilt/blob/HEAD/docs/tables/display/cards) | Card type configurations |
| [Pagination](https://github.com/laravilt/laravilt/blob/HEAD/docs/tables/display/pagination) | Page & infinite scroll |

## Basic Configuration

```php
<?php

use Laravilt\Tables\Table;

$table
    ->striped()
    ->hoverable()
    ->bordered();
```

## Empty State

```php
<?php

use Laravilt\Tables\Table;

$table
    ->emptyStateHeading('No records found')
    ->emptyStateDescription('Create your first record')
    ->emptyStateIcon('Inbox');
```

## Related

- [Grid View](https://github.com/laravilt/laravilt/blob/HEAD/docs/tables/display/grid-view) - Card grid layout
- [Cards](https://github.com/laravilt/laravilt/blob/HEAD/docs/tables/display/cards) - Card types
- [Pagination](https://github.com/laravilt/laravilt/blob/HEAD/docs/tables/display/pagination) - Pagination options
