```php TextColumn::make('price')->view('custom-column') ``` ```html <!-- custom-column.blade.php-->

TextColumn::make('price')->view('custom-column')


<!-- custom-column.blade.php-->
<div>
    <div>{{ $getRecord()->field1 }}</div>
    <div>{{ $getRecord()->field2 }}</div>
    ...
</div>
Was this page helpful?