@extends('layouts.app', [ 'title' => trans('entities/map-points.title', ['name' => $model->name]), 'description' => '', 'breadcrumbs' => [ ['url' => route($name . '.index'), 'label' => __($name . '.index.title')], ['url' => route($name . '.show', $model), 'label' => $model->name], trans('crud.tabs.map-points') ] ]) @section('content') @include('partials.errors')
@include($name . '._menu', ['active' => 'map-points'])

{{ __('entities/map-points.helper') }}

@foreach ($data as $location) @endforeach

{{ trans('locations.fields.name') }} {{ trans('locations.fields.map') }}
{{ $location->location->name }} @if (!empty($location->location->map) && (!$location->location->is_map_private || (auth()->check() && auth()->user()->can('map', $location->location)))) @endif
{{ $data->links() }}
@endsection