@extends('frontend.layouts.master') @section('meta_title', __('Pricing') . ' || ' . $setting->app_name) @section('header') @include('frontend.layouts.header-layout.three') @endsection @section('contents')
@include('frontend.profile.partials.sidebar')
@forelse ($plans as $plan)

{{ $plan?->plan_name }}

{{ currency($plan?->plan_price) }}/{{ $plan?->expiration_date }}

{{ $plan?->short_description }}

{!! clean($plan?->description) !!}
@if ($plan?->button_text) {{ $plan?->button_text }} {{ $plan?->button_text }} @endif
@empty @endforelse
@if ($plans->hasPages()) {{ $plans->onEachSide(0)->links('frontend.pagination.custom') }} @endif
@include('frontend.partials.marquee') @endsection @section('footer') @include('frontend.layouts.footer-layout.two') @endsection