@extends('layouts.admin') @section('title', get_phrase('Pricing')) @section('admin_layout')

{{ get_phrase('Package List') }}

{{ get_phrase('Add New Package') }}
@if (count($pricing)) @php $num = 1 @endphp @foreach ($pricing as $item) @endforeach
{{ get_phrase('ID') }} {{ get_phrase('Icon') }} {{ get_phrase('Name') }} {{ get_phrase('Period') }} {{ get_phrase('listing Amount') }} {{ get_phrase('Directory Type') }} {{ get_phrase('Feature') }} {{ get_phrase('Contact') }} {{ get_phrase('Choice') }} {{ get_phrase('Price') }} {{ get_phrase('Action') }}
{{ $num++ }} {{ $item->name }} {{ ucwords($item->period) }} {{ $item->listing }} {{ $item->category }} {{ ucwords($item->feature) }} {{ ucwords($item->contact) }} @if ($item->choice == 1) {{ get_phrase('Best Choice') }} @endif {{ currency($item->price) }}
@else @include('layouts.no_data_found') @endif
@endsection