@extends('layouts.master_layout') @section('include_css') @endsection @section('content') @php use Carbon\Carbon; use App\Models\MemberSubscription; $user = Auth::guard('member')->user(); $voucher = $user ? $user->voucher : null; $subscription_plan = $user ? $user->subscription_plan : null; $member_subscriptions_start_date = null; $user_old = false; if ($user && $user->created_at->lt(Carbon::parse('2025-12-01'))) { $user_old = true; } /* |-------------------------------------------------------------------------- | GIÁ GỐC (THEO YÊU CẦU) |-------------------------------------------------------------------------- */ $price_month_original = 99000; $price_6m_original = 399000; $price_12m_original = 588000; /* |-------------------------------------------------------------------------- | TÍNH GIÁ SAU GIẢM |-------------------------------------------------------------------------- */ /* GÓI THÁNG */ if ($user_old) { // Thành viên cũ: giảm 30% $price_month_final = $price_month_original * 0.7; // 209.300 } else { // Thành viên mới: giảm 10% $price_month_final = $price_month_original * 0.9; // 269.100 } /* GÓI 6 THÁNG: GIẢM CHUNG 40% */ $price_6m_final = $price_6m_original * 0.6; // 1.076.400 /* GÓI 12 THÁNG: KHÔNG GIẢM */ $price_12m_final = $price_12m_original; // 3.458.000 @endphp

Hàng triệu tài nguyên chất lượng cao - Tải về không giới hạn.

Kho Template Kho Âm thanh Kho Preset Kho phần mềm Kho màu sắc Nhiều thứ nữa...
{{-- =========================================================== GÓI 1 THÁNG ============================================================ --}}
{{-- Tính % badge hiển thị (giá gốc 299k, giá sau giảm tùy user) --}} @php $monthly_discount_percent = round( (1 - $price_month_final / $price_month_original) * 100 ); @endphp
-{{ $monthly_discount_percent }}%
1 tháng
{{ number_format($price_month_final, 0, ',', '.') }}đ
{{ number_format($price_month_original, 0, ',', '.') }}đ
@if($subscription_plan && $subscription_plan->ref == 'monthly') @elseif($subscription_plan) @else
@csrf
@endif
  • Tải xuống không giới hạn
  • Cập nhật 1000+ tài nguyên mỗi ngày
  • Hỗ trợ kỹ thuật
{{-- =========================================================== GÓI 6 THÁNG ============================================================ --}}
-40%
6 tháng
{{ number_format($price_6m_final, 0, ',', '.') }}đ
{{ number_format($price_6m_original, 0, ',', '.') }}đ
@if($subscription_plan && $subscription_plan->ref == '6_months') @elseif($subscription_plan && $subscription_plan->ref=='yearly') @else
@csrf
@endif
  • Tất cả quyền lợi như gói tháng
  • Tải không giới hạn trong 6 tháng
  • Giảm mạnh hơn trả từng tháng
  • Ưu tiên hỗ trợ
{{-- =========================================================== GÓI 12 THÁNG — KHÔNG GIẢM + TẶNG 12 THÁNG ============================================================ --}}
TẶNG 12 THÁNG
Gói năm (12 tháng)
{{ number_format($price_12m_final, 0, ',', '.') }}đ
Mua 12 tháng → Tặng thêm 12 tháng (Tổng 24 tháng)
{{ number_format($price_12m_original, 0, ',', '.') }}đ
@if($subscription_plan && $subscription_plan->ref == 'yearly') @else
@csrf
@endif
  • Dùng 24 tháng với giá 12 tháng
  • Tải không giới hạn
  • Ưu tiên hỗ trợ nhanh nhất
@endsection