@extends('web.layouts.master') @php $header = \App\Models\PageSetup::page('pricing'); @endphp @if(isset($header)) @section('title', $header->meta_title) @section('top_meta_tags') @if(isset($header->meta_description)) @else @endif @if(isset($header->meta_keywords)) @else @endif @endsection @endif @section('content')

{{ __('navbar.pricing') }}

@php $section_pricing = \App\Models\Section::section('pricing'); @endphp @if(count($pricings) > 0 && isset($section_pricing))

{{ $section_pricing->title }}

{!! $section_pricing->description !!}
@foreach($pricings as $pricing)

{{ $pricing->title }}

{{ __('common.currency') }}{{ $pricing->price }} @if(isset($pricing->old_price)) {{ $pricing->old_price }} @endif / {{ $pricing->duration }}
    @php $features = json_decode($pricing->description, true); @endphp @if(isset($features)) @foreach($features as $key => $feature)
  • {{ $feature }}
  • @endforeach @endif
@php $page_quote = \App\Models\PageSetup::page('get-quote'); $page_contact = \App\Models\PageSetup::page('contact-us'); @endphp @if(isset($page_quote)) {{ __('common.get_start') }} @elseif(isset($page_contact)) {{ __('common.get_start') }} @endif
@endforeach
@endif @php $section_clients = \App\Models\Section::section('clients'); @endphp @if(count($clients) > 0 && isset($section_clients))
@endif @endsection