@extends($_layout . 'home') @section('content')
@include($_template . 'page-banner', [ 'size' => 'small', 'title' => 'Thanh toán gói tháng', 'show_breadcrumb' => true, 'show_shape' => true, ]) {{-- @if (isset($user) && $user && $user->type == 'agent' && ($agent = get_agent_account($user->id)) && $agent->month_balance > 0)
Dùng số dư tài khoản đại lý
@csrf @if ($next = old('next', $request->next)) @endif @if ($error = session('error'))
{{ $error }}
@endif
Số dư hiện tại: {{$agent->month_balance}}
@if ($error = $errors->first('month'))
{{ $error }}
@endif
@endif --}} @if (count($packages))
Bảng giá {{--

Các gói thuê bao

--}}
@foreach ($packages as $item) @php $i = ($loop->index % 3) + 1; @endphp

{{$item->name}}

{{number_format($item->getRetailPrice() / 1000, 0, ',', '.')}}k

{{$item->getDurationLabel()}}
    {!! implode('', array_map(function($line){ $a = trim($line); if(preg_match('/^\[(f|x)\]/si', $a)){ $a = preg_replace('/^\[(f|x)\]/si', '', $a); $a = "$a"; }elseif(preg_match('/^\[(t|true)\]/si', $a)){ $a = preg_replace('/^\[(t|true)\]/si', ' ', $a); } return "
  • $a
  • "; }, nl2array($item->feature_text))) !!}
{{$item->retail_price > 0? 'Mua gói': 'Dùng thử'}}
@endforeach
Images
Images
Images
Images
Images
Images
@else @endif
@endsection