@extends('Frontend.Layouts.default') @section('header-menu-items') @if ( Auth::User() )
  • {{ trans('global.log_out') }}
  • @endif @stop @section('content') @if (Session::has('message'))
    {!! Session::get('message') !!}
    @endif @if (Session::has('success'))
    {!! Session::get('success') !!}
    @endif

    {!! trans('front.renew_upgrade') !!}

    @foreach($plans as $plan)
    {{ $plan->title }}
    @foreach($permissions['main'] as $permission => $modes) @endforeach
    {{ trans('validation.attributes.objects') }} {{ $plan->objects }}
    {{ trans('front.duration') }} {{ $plan->duration_value }} {{ trans('front.'.$plan->duration_type) }}
    {{ trans('validation.attributes.price') }} {{ float($plan->price) }}
    {{ trans('front.' . $permission) }}
    @endforeach
    @stop