@extends('layouts/contentNavbarLayout') @section('title', 'Dashboard - Analytics') @section('vendor-style') @endsection @section('vendor-script') @endsection @section('page-script') @endsection @section('content')
@if (auth()->check())

Congratulations Oxytech!🎉

@if ($visitorsCount > 1000) Your website is booming with {{ $visitorsCount }} visitors! 🚀 Keep up the amazing work! @elseif ($visitorsCount > 500) Great job! You’ve had {{ $visitorsCount }} visitors. Keep pushing for more! 🎉 @elseif ($visitorsCount > 100) You’ve had {{ $visitorsCount }} visitors today. Solid growth! 👍 @else You’ve had {{ $visitorsCount }} visitors so far. Let’s aim for more! 💪 @endif

Products

{{$myProjectCount}}

View All
Enquiries

{{$enquiriesCount}}

View All
Latest Enquiries
View All
    @foreach($enquiries as $enquiry)
  • @if($enquiry->avatar) {{-- Assuming you have an avatar field --}} avatar @else
    {{ strtoupper(substr($enquiry->name, 0, 1)) }} {{-- Display the first letter of the name --}}
    @endif
    {{ $enquiry->name }}
    {{ \Carbon\Carbon::parse($enquiry->created_at)->format('d M | h:i A') }}
    {{ $enquiry->phone_number }}
  • @endforeach
@else

Welcome! Please log in.

@endif
@endsection