@if (in_array('4-view', $appbuilder_array))
@endif
@if (in_array('4-serialize', $appbuilder_array))
@if (count($coremodules) > 0)
# |
Module Title |
Serialize Sub-Module |
@foreach ($coremodules as $module)
@if ($module->parent_id == 0)
@php
$checkmodule_category = \App\Models\CoreModule::where(
'parent_id',
$module->id,
)
->where('status', 1)
->count();
@endphp
@if ($checkmodule_category > 0)
|
{{ $module->module_title }} |
@if ($module->status != 2)
-
@else
@php
$get_submodule = \App\Models\CoreModule::where(
'parent_id',
$module->id,
)
->orderBy('serial', 'asc')
->where('status', 1)
->get();
@endphp
@if (count($get_submodule) > 0)
@foreach ($get_submodule as $sub_module)
|
{{ $sub_module->module_title }}
|
@endforeach
@endif
@endif
|
@endif
@endif
@endforeach
@else
You haven't any module yet
@endif
@endif
@if (in_array('4-create', $appbuilder_array))
@endif
@if (in_array('4-module-category-manager', $appbuilder_array))
All Module Categories
# |
Title |
Action |
@if (count($module_categories) > 0)
@foreach ($module_categories as $key => $module_cat)
{{ $key + 1 }}
|
{{ $module_cat->module_title }} |
@if ($module_cat->predef != 1)
@endif
|
@endforeach
@else
Nothing found
|
@endif
@endif