Custom colum view
How can I get the $record->token and print it on a custom column view?
View:
View:
Solution
getState() if you are using ::make('token') or $getRecord() to get the recordColumn::make('test')->view('visual-testing::livewire.visual-testing-test')<div class="flex">
<div>
<p>{{$token}}</p>
</div>
<x-heroicon-o-clipboard class="w-5 cursor-pointer" @click=""/>
</div>getState()::make('token')$getRecord()<div>
{{ $getState() }}
</div><div>
{{ $getRecord()->token }}
</div>