@extends('admin.layouts.master') @section('content')

{{ __('Pricing Plans') }}

{{ __('Add Item') }}
@foreach($pricing_plans as $item) @endforeach
{{ __('SL') }} {{ __('Name') }} {{ __('Price') }} {{ __('Period') }} {{ __('Is Popular') }} {{ __('Manage Options') }} {{ __('Action') }}
{{ $loop->iteration }} {{ $item->name }} {{ $global_setting->currency_symbol }}{{ $item->price }} {{ $item->period }} {{ $item->is_popular }} {{ __('Manage Option') }}
@endsection