@extends('user.layouts.index', ['header' => true, 'nav' => true, 'demo' => true, 'settings' => $settings]) @section('content')
{{-- Failed --}} @if (Session::has('failed')) @endif {{-- Success --}} @if (Session::has('success')) @endif
@foreach ($visitors as $visitor) @endforeach
{{ __('#') }} {{ __('Date') }} {{ __('IP') }} {{ __('Language') }} {{ __('Platform') }} {{ __('Browser') }}
{{ $loop->iteration }} {{ $visitor->created_at->diffForHumans() }} {{ $visitor->ip_address }} {{ $visitor->language }} {{ str_replace('"', '', $visitor->platform) }} {{ $visitor->user_agent }}
@include('user.includes.footer')
{{-- Custom JS --}} @section('scripts') @endsection @endsection