
# Table Display

Table and grid view display options.

## Display Modes

| Mode | Description |
|------|-------------|
| Table View | Default row-based display |
| [Grid View](grid-view) | Card-based grid layout |
| [Cards](cards) | Card type configurations |
| [Pagination](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](grid-view) - Card grid layout
- [Cards](cards) - Card types
- [Pagination](pagination) - Pagination options
