20 lines
324 B
PHP
20 lines
324 B
PHP
@include('googlmapper::javascript')
|
|
|
|
@foreach ($items as $id => $item)
|
|
|
|
{!! $item->render($id, $view) !!}
|
|
|
|
@if ($options['async'])
|
|
|
|
<script type="text/javascript">
|
|
|
|
initialize_items.push({
|
|
method: initialize_{!! $id !!}
|
|
});
|
|
|
|
</script>
|
|
|
|
@endif
|
|
|
|
@endforeach
|