@extends('layouts.simple.master') @section('title', trans(app()->getLocale() . '.admin_dashboard')) @section('css') @endsection @section('main_content')
{{ trans(app()->getLocale() . '.here_whats_happening') }}
( {{ $acceptedOffers }}{{ trans(app()->getLocale() . '.accepted') }})
| {{ trans(app()->getLocale() . '.name') }} | {{ trans(app()->getLocale() . '.type') }} | {{ trans(app()->getLocale() . '.date') }} | |
|---|---|---|---|
|
@if($user->image)
{{ strtoupper(substr($user->name ?? 'N', 0, 1)) }}
@endif
{{ $user->name ?? 'N/A' }}
{{ $user->email ?? 'N/A' }} |
{{ trans(app()->getLocale() . '.' . $user->type) }} | {{ $user->created_at }} | |
| {{ trans(app()->getLocale() . '.no_users_found') }} | |||
{{ trans(app()->getLocale() . '.subscription_statistics') }}
{{ trans(app()->getLocale() . '.pending_meetings') }}: {{ $pendingMeetings }}
{{ now()->format('h:i A') }}{{ trans(app()->getLocale() . '.verification_meetings_awaiting') }}
{{ now()->format('M d, Y') }}
{{ trans(app()->getLocale() . '.pending_type_change_requests') }}: {{ $pendingTypeChangeRequests }}
{{ now()->format('h:i A') }}{{ trans(app()->getLocale() . '.user_type_change_requests_pending') }}
{{ now()->format('M d, Y') }}
{{ trans(app()->getLocale() . '.pending_offers') }}: {{ $pendingOffers }}
{{ now()->format('h:i A') }}{{ trans(app()->getLocale() . '.offers_awaiting_response') }}
{{ now()->format('M d, Y') }}
{{ $recentCompanies->first()->name ?? 'N/A' }} ({{ trans(app()->getLocale() . '.new_company') }})
{{ $recentCompanies->first()->created_at ?? '' }}{{ trans(app()->getLocale() . '.new_company_registered') }}
{{ $recentCompanies->first()->created_at ?? '' }}
| {{ trans(app()->getLocale() . '.company') }} | {{ trans(app()->getLocale() . '.from') }} | {{ trans(app()->getLocale() . '.investment_amount') }} | {{ trans(app()->getLocale() . '.date') }} | {{ trans(app()->getLocale() . '.status') }} | |
|---|---|---|---|---|---|
|
@if($offer->company && $offer->company->logo)
{{ strtoupper(substr($offer->company->name ?? 'N', 0, 1)) }}
@endif
{{ $offer->company->name ?? 'N/A' }}
#{{ $offer->id }} |
{{ $offer->fromUser->name ?? 'N/A' }} | ${{ number_format($offer->investment_amount ?? 0, 2) }} | {{ $offer->created_at }} | @php $statusClass = [ 'pending' => 'button-light-info txt-info', 'accepted' => 'button-light-success txt-success', 'rejected' => 'button-light-danger txt-danger', 'countered' => 'button-light-warning txt-warning' ][$offer->status] ?? 'button-light-info txt-info'; $statusLabel = trans(app()->getLocale() . '.status_' . $offer->status); @endphp | |
| {{ trans(app()->getLocale() . '.no_offers_found') }} | |||||
| {{ trans(app()->getLocale() . '.company') }} | {{ trans(app()->getLocale() . '.owner') }} | {{ trans(app()->getLocale() . '.date') }} |
|---|---|---|
| {{ $company->name ?? 'N/A' }} | {{ $company->owner->name ?? 'N/A' }} | {{ $company->created_at }} |
| {{ trans(app()->getLocale() . '.no_companies_found') }} | ||