@extends('user.layouts') @section('content')
{{trans('home.account_balance')}}
{{Auth::user()->balance}}

{{trans('home.services')}}

@foreach($goodsList as $key => $goods)
{{$goods->name}}
@if($goods->is_limit)

@elseif($goods->is_hot)

@endif
¥ {{$goods->price}} / {{$goods->days}}{{trans('home.day')}}
@if($goods->info)

{{$goods->desc}}

@endif
  • @if($goods->type == 2) {{$goods->traffic_label}} {{trans('home.account_bandwidth_usage')}}/{{trans('home.month')}} @elseif($goods->type == 1) {{$goods->traffic_label}} {{trans('home.account_bandwidth_usage')}}/{{$goods->days}} {{trans('home.day')}} @endif
  • {{trans('home.service_unlimited')}} {{trans('home.service_device')}}
  • {!!$goods->info!!}
@endforeach
@endsection @section('script') @endsection