@extends('layouts.front') @push('css') @endpush @section('content') @includeIf('partials.user.header')
@includeIf('partials.user.sidebar')

@lang('Hello'), {{ auth()->user()->name }}

{{ $active_listings }}

@lang('Active Listings')

{{ $view_listings }}

@lang('Views Listing')

{{ $total_reviews }}

@lang('Total Reviews')

{{ $total_bookings }}

@lang('Total Bookings')

@lang('Subscription')

    @if (count($subscriptions) == 0)
  • @lang('No Subscription Found')

  • @else @foreach ($subscriptions as $key=> $data)
  • {{ $data->plan->title }} Plan
      @if ($data->status == 1) @else
    • @lang('pending')
    • @endif
    • @lang('Order No'): #{{ $data->subscription_number }}
    • @lang('Date'): {{ $data->created_at->format('d M Y') }}
  • @endforeach @endif

Followers

@if (count($followers) == 0)

@lang('No Follower Found')

@else @foreach ($followers as $key=>$data)
...
{{ $data->user->name }}
{{ $data->user->address }}
@endforeach @endif
@php echo $gs->copyright; @endphp
@endsection @push('js') @endpush