viewrecord on modal not showing record

->columns([
TextColumn::make('rekening.nama')
->searchable(),
TextColumn::make('rekening.no_rek')
->label('Label'),
TextColumn::make('saldo')
->money('IDR')
->summarize([
Sum::make()
->money("IDR"),
]),
TextColumn::make('updated_at')
->label('Terakhir Di Ubah')
->since()
])

my table column

->actions([
Tables\Actions\ViewAction::make(),
])
My View Action

i dont know what is wrong
image.png
Was this page helpful?