migrate to gtea from bistbucket

This commit is contained in:
2026-03-15 17:08:23 +07:00
commit 129ca2260c
3716 changed files with 566316 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
@foreach (Module::all() as $module)
<tr>
@php
$name = $module->getName();
@endphp
<td>{{ $loop->iteration }}</td>
<td class="text-center">{{ Str::headline($name) }}</td>
<td class="text-center">{{ $module->get('version') }}</td>
<td class="text-center">
<label class="switch">
<input type="checkbox" {{ $module->isEnabled() ? 'checked' : '' }} class="status" data-method="GET" data-url="{{ route('admin.addons.show', $name) }}">
<span class="slider round"></span>
</label>
</td>
</tr>
@endforeach