@extends('layouts.app') @push('styles') @mapstyles @endpush @section('content') @if (Auth::user()->role_id >= 5)
@include('sidebar')
@else
@endif

Postulaciones

{!! Form::open(['method'=>'GET','url'=>'postulation','class'=>'navbar-form navbar-left','role'=>'search']) !!}
{!! Form::close() !!}
@php $mapMarkers = []; foreach ($postulations as $postulation) { if ($postulation->location) { $mapMarkers[] = [ 'title' => $postulation->id, 'lat' => $postulation->location->getLat(), 'lng' => $postulation->location->getLng(), 'popup' => '

' . $postulation->id . '

' . $postulation->address . '
' . ucfirst($postulation->categories->name ?? '') . '
' . $postulation->appointment . '
' . $postulation->amount . '

', ]; } } @endphp @map([ 'lat' => 20.659698, 'lng' => -103.349609, 'zoom' => 12, 'markers' => $mapMarkers ])
    {{ $postulations->links() }}
@endsection