@php use App\Enums\PlanDurationType; @endphp @extends('layouts/layoutMaster') @section('title', __('Edit Plan')) @section('content')

@lang('Edit Plan')

@csrf @method('PUT')
@lang('Cancel')
@lang('Manage Standard Modules')
@foreach(ModuleConstants::STANDARD_MODULES as $module)
{{ $module }}
@endforeach
@lang('Manage Premium Modules')
@foreach(Module::toCollection() as $module) @if(in_array($module->getName(), ModuleConstants::ATTENDANCE_TYPES)) @continue @endif @if(in_array($module->getName(), ModuleConstants::SUPER_ADMIN_MODULES)) @continue @endif
{{ $module->getName() }}
@endforeach
@lang('Manage Attendance Types')
@foreach(Module::toCollection() as $module) @if(!in_array($module->getName(), ModuleConstants::ATTENDANCE_TYPES)) @continue @endif
{{ $module->getName() }}
@endforeach
@endsection