LarsWiegers / laravel-maps

Your laravel maps libary.
https://github.com/LarsWiegers/laravel-maps
MIT License
260 stars 35 forks source link

Blade Tags #6

Closed CrisCrassus closed 3 years ago

CrisCrassus commented 3 years ago

If I try to use blade tags to pull a latitude/longtitude from a DB it doesn't seem to like it. I've checked my syntax and as far as I'm aware it's ok.

CrisCrassus commented 3 years ago

<x-maps-leaflet :centerPoint="['lat' => {{$hotel->latitude}}, 'long' => {{$hotel->latitude}}]" :markers="[['lat' => {{$hotel->latitude}}, 'long' => {{$hotel->latitude}}]]" :zoomLevel="15"></x-maps-leaflet> This is my code

LarsWiegers commented 3 years ago

Hi!, Thanks for creating an issue. FYI i believe in the blade tags you dont have to use the {{ and }} to pass data. See this docs sample: https://laravel.com/docs/8.x/blade#passing-data-to-components.

Please let me know if it works by removing them :).

CrisCrassus commented 3 years ago

Works now :) thanks