@extends('layouts.new_theme') @section('content')

{{ __('Plans') }}

@include('common.demo') @include('common.admin') @include('common.errors')

{{ __('List of Plans') }} {{__('Add')}}

@if (!count($plans))

{{ __('No data found') }} !!

{{ __('Sorry we cant find any data, to get rid of this message, make at least 1 entry') }}.

@else
@foreach($plans as $plan) @if (($plan->status) == true) @else @endif @endforeach
{{ __('Name') }} {{ __('Status') }}
{{ str_replace("_", " ", __($plan->name))}}{{ __('enable') }}{{ __('disable') }}
@method('DELETE') @csrf

@endif
@endsection