@php
$cart = session()->get('cart', []);
use App\Models\Information;
use App\Models\CouponCode;
$info = Information::first();
// চেক করা হচ্ছে আজ ব্যবহার করার মতো কোনো অ্যাক্টিভ কুপন ডাটাবেসে আছে কি না
$activeCouponsCount = CouponCode::whereDate('start', '<=', date('Y-m-d'))
->whereDate('end', '>=', date('Y-m-d'))
->count();
@endphp