Can I defer-loading a table column/cell?

I need it because there's one column that fetches from an external API, individually. So waiting the whole table to load is not fun, right?

$table
    ->columns([
        TextColumn::make('foo')
            ->getStateUsing(fn ($record) => SomeApiService::getDeviceStatus($record->device_key)),
    ])

I expect that the table load normally, but that column will be 'loading' and show the result later.
Was this page helpful?