@extends($_layout . 'home') @section('meta.robots', 'noindex') @section('title', 'Thông tin tài khoản') @include($_lib . 'register-meta') @php $agent = $user->type == 'agent' ? get_agent_account($user->id) : null; $wallet = get_user_wallet($user->id); @endphp @section('content') @include($_template . 'navbg')

Dịch vụ của tôi

 

@if ($services && count($services))
    @foreach ($services as $service) @php $activeService = $service->activeService; $store = $service->store; $is_disabled = false; $is_checked = false; $store_quantity = $service->store_quantity; $availablle = false; // if ($activeService) { $is_disabled = $activeService->isExpired(); $is_checked = $activeService->is_active == 1; $availablle = true; } else { $is_disabled = true; } @endphp
  • @if ($availablle) | @if ($is_disabled) Đã hết hạn @else {{$service->expiredFormat()}} @endif @endif | Khả dụng: {{ $store_quantity }} @if ($is_disabled) | @if ($availablle) @elseif($store_quantity) Sử dụng @else Mua gói @endif @endif
  • @endforeach
@else

Không có dịch vụ nào

@endif

Mua gói

@endsection