@extends('layouts.admin') @section('title', 'Existing Charging Points - EV Charging Network') @section('breadcrumb_title', 'Charging Points') @section('breadcrumb_sub_title', 'Existing Location') @section('page_title', 'Existing Charging Points Found') @section('content')
We found {{ $chargingPointModels->count() }} charging point(s) within 50 meters of the specified location ({{ $latitude }}, {{ $longitude }}).
Status: @if($chargingPoint->status == 1) Verified @elseif($chargingPoint->status == 0) Under Review @elseif($chargingPoint->status == 4) Inactive @else Rejected @endif
@if($chargingPoint->description)Description: {{ Str::limit($chargingPoint->description, 100) }}
@endif @if($chargingPoint->network)Network: {{ $chargingPoint->network->name }}
@endif @if($chargingPoint->powerOutput)Power Output: {{ $chargingPoint->powerOutput->name }}
@endif @if($chargingPoint->plugTypes->count() > 0)Plug Types: @foreach($chargingPoint->plugTypes as $plugType) {{ $plugType->name }} ({{ $plugType->pivot->quantity }}) @if(!$loop->last), @endif @endforeach
@endif @if($chargingPoint->amenities->count() > 0)Amenities: @foreach($chargingPoint->amenities as $amenity) {{ $amenity->name }} @if(!$loop->last), @endif @endforeach
@endif