@extends('layouts/layoutMaster') @section('title', __('Create Plan')) @section('content')

@lang('Create Plan')

@csrf
@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