You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
504 B
19 lines
504 B
@if($rows) |
|
<div class="ml-2 mb-2 mr-2" style="margin-top: -0.5rem"> |
|
@foreach($rows as $row) |
|
{!! $row->render() !!} |
|
@endforeach |
|
|
|
@foreach($fields as $field) |
|
@if($field instanceof Dcat\Admin\Form\Field\Hidden) |
|
{!! $field->render() !!} |
|
@endif |
|
@endforeach |
|
</div> |
|
@elseif($layout->hasColumns()) |
|
{!! $layout->build() !!} |
|
@else |
|
@foreach($fields as $field) |
|
{!! $field->render() !!} |
|
@endforeach |
|
@endif |