@php
$steps[] = [
'title' => 'Ügyfél',
'include' => 'order.form.customer',
];
$steps[] = [
'title' => 'Termékek',
'include' => 'order.form.products',
];
$steps[] = [
'title' => 'Vásárlás adatai',
'include' => 'order.form.order',
];
@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