@foreach($records as $record) {!! str_repeat(" ", $indentation * 5) !!} {{$record->name}} {{$record->type == 'IN' ? 'Ingresso' : 'Uscita'}} {{$record->enabled ? 'attivo' : 'disattivo'}} @if(count($record->childs)) @include('livewire/causal_child',['records' => $record->childs, 'indentation' => $indentation + 1]) @endif @endforeach