@extends('main') @section('styles') {!! Html::style(Theme::current()->assetPath.'/css/services.css') !!} @endsection @section('page-title') @endsection @section('content')
@php foreach ($showrooms as $key => $showroom) { if ($key == 0) { Mapper::map($showroom->lat, $showroom->lng, ['zoom' => 10, 'marker' => false,'center' => true, 'markers' => ['title' => $showroom->title, 'animation' => 'DROP', 'autoClose' => true]])->informationWindow($showroom->lat, $showroom->lng, '
'.__('Branch').' : '.$showroom->title .'
'. $showroom->address .'
'. $showroom->content.'
' , ['maxWidth'=> 300, 'title' => $showroom->title]); } else { Mapper::informationWindow($showroom->lat , $showroom->lng, '
'.__('Branch').' : '.$showroom->title .'
'. $showroom->address .'
'. $showroom->content.'
', ['open' => false, 'maxWidth'=> 300, 'title' => 'Title']); } } @endphp {!! Mapper::render() !!}

{{ __('Showrooms') }}


@foreach ($showrooms as $key => $showroom)

{{ $showroom->title }}

{{ $showroom->address }}

{!! $showroom->content !!}

@endforeach
@endsection @section('scripts') @endsection