@extends('layouts.base') @section('title', "{{ __('My waypoints') }}") @section('content')

{{ __('My waypoints') }}

@if(session('ok'))
{{ session('ok') }}
@endif

{{ __('New waypoint') }}

@forelse($points as $p) @empty @endforelse
{{ __('Name') }} {{ __('Coordinates') }} {{ __('Owner') }} {{ __('Actions') }}
{{ $p->name }} {{ $p->latitude }}, {{ $p->longitude }} {{ optional($p->owner)->firstname }} {{ optional($p->owner)->lastname }} {{ optional($p->owner)->email }} {{ __('Edit') }}
{{ __('No waypoint found') }}
{{ $points->links() }}
@endsection