@extends('main') @section('content')

Posts

0
@if(App\Models\Admin::isPermission('transaction') == 'true')
profile_image
Today Payment

{{ App\Models\Setting::getValue('currency') }} {{ $today_payment }}

profile_image
Weekly Payment

{{ App\Models\Setting::getValue('currency') }} {{ $weekly_payment }}

profile_image
Monthly Payment

{{ App\Models\Setting::getValue('currency') }} {{ $monthly_payment }}

profile_image
Total Payment

{{ App\Models\Setting::getValue('currency') }} {{ $total_payment }}

@endif
@if(App\Models\Admin::isPermission('transaction') == 'true')
@endif
User Subscription Plan Expire
    @foreach($subs_end_usr as $user)
  • {{ $user->name }}
    End on {{date('d M, y',strtotime($user->subscription_end_date))}}
  • @endforeach
Recent Register User
@foreach($recent_user as $user) @endforeach
Information Date
{{ $user->name }}

@if($user->email) {{$user->email}} @else {{$user->number}} @endif

{{date('d M, y',strtotime($user->created_at))}}

Recent subscription
@foreach($recent_transaction as $trasaction) @endforeach
Information Amount
{{ $trasaction->user->name }}

@if($trasaction->user->email) {{$trasaction->user->email}} @else {{$trasaction->user->number}} @endif

{{ $trasaction->amount }}
Recent Contacts
@foreach($recent_contact as $contacts)
{{$contacts->user->name}}

{{$contacts->message}}


@endforeach
@endsection