@extends('layouts.admin') @section('page', $page) @section('title', getSetting('APPLICATION_NAME') . ' | ' . $page) @section('content')
@include('include.message') @include('admin.plans.search')
@foreach ($plans as $key => $value) @endforeach
{{ __('ID') }} {{ __('Name') }} {{ __('Currency') }} {{ __('Monthly amount') }} {{ __('Yearly amount') }} {{ __('Description') }} {{ __('Status') }} {{ __('Action') }}
{{ $value->id }} {{ $value->name }} @if (!$value->hasPrice()) {{ __('Default') }} @endif {{ $value->currency ? $value->currency : '-' }} {{ $value->amount_month ? $value->amount_month : '-' }} {{ $value->amount_year ? $value->amount_year : '-' }} {{ $value->description }} @if ($value->id == 1) - @else
status == 1 ? 'checked' : '' }}>
@endif
{{ __('ID') }} {{ __('Name') }} {{ __('Currency') }} {{ __('Monthly amount') }} {{ __('Yearly amount') }} {{ __('Description') }} {{ __('Status') }} {{ __('Action') }}
@endsection