リソースの詳細ビューを表示している場合とインデックス ビューを表示している場合で、異なる計算フィールドの結果を返したいと考えています。
基本的には、以下の viewIs() のようなもの:
Text::make('Preview', function () {
if($this->viewIs('index'){
return \small_preview($this->image);
}
return \large_preview($this->image);
})->asHtml(),