@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
@yield('content')
@if (Session::has('admin'))
{{ trans('user.current_role') }}:{{ auth()->user()->username }}
@endif @endsection @section('layout_javascript') @yield('javascript') {!! sysConfig('website_statistics_code') !!} {!! sysConfig('website_customer_service_code') !!} @endsection