> For the complete documentation index, see [llms.txt](https://boredprogrammers.gitbook.io/laragrid/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://boredprogrammers.gitbook.io/laragrid/column/create-a-column.md).

# Create a Column

### Creating a Column

To create a column, you use the `make` method. This static method creates a new instance of the `Column` class. It takes two arguments: the model field and the label.

**Label is automatically translated with default renderers. If you rewrite the renderer, you need to translate the label yourself.**

```php
Column::make('name', 'attributes.name')
```

```php
Column::make('name', 'attributes.name')
    ->setRenderer(function ($record) {
        return __($record->name);
    })
```
