@php use App\Models\ReferralLog, App\Models\Order; @endphp
@extends('_layout')
@section('title', sysConfig('website_name'))
@section('layout_css')
@yield('css')
@endsection
@section('body_class', 'dashboard')
@section('layout_content')
@php
$ticket_count = auth()->user()->tickets()->where('status', '<>', 2)->count();
$activePlan = Order::uid()->whereStatus(2)->exists();
@endphp