@extends('website.layouts.master') @section('title', __('contact_us')) @section('content') @php $page = 'package'; @endphp
@foreach ($monthly_packages as $package)
@if ($package->discount)
{{ __('save') . ' ' . get_discount_percentage($package->price, $package->discount) }}
@endif

{{ $package->name }}

{{ get_currency($package->discount > 0 ? $package->price - $package->discount : $package->price) }} /{{ __('per_month') }}
  • {{ __('validity') . ' ' . $package->day . ' ' . __('days') }}
  • {{ __('ads_free_content') }}
@if (auth()->user() || $token) {{ __('get_started') }} @else {{ __('login_required') }} @endif
@endforeach
@foreach ($annually_packages as $package)
@if ($package->discount)
{{ __('save') . ' ' . get_discount_percentage($package->price, $package->discount) }}
@endif

{{ $package->name }}

{{ get_currency($package->discount > 0 ? $package->price - $package->discount : $package->price) }} /{{ __('per_month') }}
  • {{ __('ads_free_content') }}
@if (auth()->user() || $token) {{ __('get_started') }} @else {{ __('login') }} @endif
@endforeach
@endsection