@extends('web.website.layouts.master') @section('css') @include('web.website.includes.css.pricing') @endsection @section('content')

Pricing Table

{{--

descripton descripton descripton descripton descripton descripton

--}}
@if (isset($data['rows']) && $data['rows']->count() > 0) @foreach($data['rows'] as $row)
{{$row->tag}}

{{$row->title}}

@if (isset($row->image) && $row->image !=='') {{--
--}} {{$row->title}} @endif
{!! $row->description!!}

{{isset($generalSetting->currency_symbol)?$generalSetting->currency_symbol:'$'}} {{{$row->new_price}}}

{{isset($row->per_term)?$row->per_term:''}}
{{isset($generalSetting->currency_symbol)?$generalSetting->currency_symbol:'$'}} {{{$row->old_price}}}
{{isset($row->button_text)?$row->button_text:'BUY NOW'}}
@endforeach @endif
@endsection