@extends('admin.layouts.app') @section('panel')
@forelse($plans as $plan) @empty @endforelse
@lang('Name') @lang('Invest Limit') @lang('Interest') @lang('Time') @lang('Featured') @lang('Status') @lang('Action')
{{__($plan->name)}} @if($plan->fixed_amount == 0) {{$general->cur_sym}}{{showAmount($plan->minimum)}} - {{$general->cur_sym}}{{showAmount($plan->maximum)}} @else {{$general->cur_sym}}{{showAmount($plan->fixed_amount)}} @endif {{ showAmount($plan->interest) }} @if($plan->interest_type == 1) % @else {{ $general->cur_text }} @endif {{ $plan->time }} @lang('Hours') @if($plan->featured == 1) @lang('Yes') @else @lang('No') @endif @if($plan->status == 1) @lang('Active') @else @lang('Inactive') @endif @if ($plan->status) @else @endif
{{ __($emptyMessage) }}
@endsection @push('breadcrumb-plugins') @endpush @push('script') @endpush