@php
$photos = $item->photos;
$steps[] = [
'title' => 'Fényképek',
'include' => 'product.steps.photos',
];
if( $item->part_id == 1 ) {
if( $item->parts_tree_template )
{
$steps[] = [
'title' => 'Alkatrészfa',
'include' => 'product.steps.parts_template_tree',
];
}
}
@endphp
@foreach ($steps as $step_id => $step_data)
@if( isset($step_data['columns']) )
@php
$columns = $step_data['columns'];
@endphp
@include('admin.form.index')
@endif
@if( isset($step_data['include']) )
@include($step_data['include'])
@endif
@if ($step_id > 0)
@endif
@if ($step_id < count($steps) - 1 )
@endif
@endforeach