@extends('layouts.app') @section('content')
No location data available yet
Locations will appear here as invoices are created
| Invoice # | Customer | Amount | IP Address | Location | Device | Browser | Created | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ $invoice->invoice_number }} |
{{ $invoice->customer_name }}
@if($invoice->customer_email)
{{ $invoice->customer_email }}
@endif
|
${{ number_format($invoice->total_amount, 2) }} | @if($invoice->ip_address) {{ $invoice->ip_address }} @else - @endif |
@if($invoice->city || $invoice->country)
@if($invoice->city){{ $invoice->city }}, @endif
{{ $invoice->country ?? '-' }}
GPS
{{ number_format($invoice->browser_latitude, 4) }}, {{ number_format($invoice->browser_longitude, 4) }}
@if($invoice->location_accuracy)
(±{{ $invoice->location_accuracy }}m)
@endif
@elseif($invoice->latitude && $invoice->longitude)
IP
{{ number_format($invoice->latitude, 4) }}, {{ number_format($invoice->longitude, 4) }}
@endif
@else
-
@endif
|
@if($invoice->device_type) {{ ucfirst($invoice->device_type) }} @else - @endif |
@if($invoice->browser)
{{ $invoice->browser }}
@if($invoice->platform)
{{ $invoice->platform }}
@endif
@else
-
@endif
|
{{ $invoice->created_at->format('M d, Y H:i') }} | View |
| No invoices found | ||||||||