| {{ $row->title }} |
{{ $row->responsible_name }} |
{{ $row->stage_name }} |
@if ($columns)
@foreach($columns as $column)
@php
[$table, $columnName] = explode('.', $column);
@endphp
@if ($table == 'custom_fields')
@php
$parts = explode('.', $column);
[$prefix, $entityType, $columnName] = $parts;
@endphp
{{ strip_tags($row->{$column}) ?? '' }} |
@else
{{ strip_tags($row->{$table .'.'. $columnName}) ?? '' }} |
@endif
@endforeach
@endif
@endforeach