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.
22 lines
652 B
22 lines
652 B
@if($title || $tools) |
|
<div class="box-header with-border" style="padding: .65rem 1rem"> |
|
<h3 class="box-title" style="line-height:30px;">{!! $title !!}</h3> |
|
<div class="pull-right">{!! $tools !!}</div> |
|
</div> |
|
@endif |
|
<div class="box-body"> |
|
<div class="form-horizontal mt-1"> |
|
@if($rows->isEmpty()) |
|
@foreach($fields as $field) |
|
{!! $field->render() !!} |
|
@endforeach |
|
@else |
|
<div> |
|
@foreach($rows as $row) |
|
{!! $row->render() !!} |
|
@endforeach |
|
</div> |
|
@endif |
|
<div class="clearfix"></div> |
|
</div> |
|
</div>
|
|
|