10 lines
321 B
PHP
10 lines
321 B
PHP
@if(!empty($module_form_parts))
|
|
@foreach($module_form_parts as $module_key => $module_part)
|
|
@if(!empty($module_part['template_path']))
|
|
@php
|
|
$template_data = $module_part['template_data'] ?: [];
|
|
@endphp
|
|
@include($module_part['template_path'], $template_data)
|
|
@endif
|
|
@endforeach
|
|
@endif |