@extends('panel.layout.app') @section('title', __('Dashboard')) @section('content')
{{ __('Dashboard') }}
{{ __('Total sales') }}
{{ __('New users') }}
{{ __('Words Generated') }}
{{ __('Images Generated') }}
{{ __('Total Sales') }}
{{ __('Country') }} | {{ __('Users') }} | {{ __('Popularity') }} |
---|---|---|
{{ __($top_countries->country ?? 'Not Specified') }} | {{ $top_countries->total }} |
|
@if ($entry->user) {!! $entry->user->getAvatar() !!} @endif |
@if ($entry->user)
{{ $entry->user->fullName() }}
@endif
{{ __($entry->activity_type) }}
@if (isset($entry->activity_title))
"{{ __($entry->activity_title) }}"
@endif
{{ $entry->created_at->diffForHumans() }}
|
@if (isset($entry->url)) {{ __('Go') }} @endif |
{{ __('Method') }} | {{ __('Status') }} | {{ __('Info') }} | {{ __('Plan') }} / {{ __('Words') }} / {{ __('Images') }} | |||
---|---|---|---|---|---|---|
{{ __($order->payment_type) }} | @if ($order->status == 'Success'){{ __($order->status) }} | @else{{ __($order->status) }} | @endif
{{ $order->user->fullName() }}
{{ __($order->type) }} |
{{ @$order->plan->name ?? 'Archived Plan' }} /{{ @$order->plan->total_words === '-1' ? __('Unlimited') : @$order->plan->total_words ?? '-' }} /{{ @$order->plan->total_images === '-1' ? __('Unlimited') : @$order->plan->total_images ?? '-' }} |