2022-06-01 10:15:55 +03:00
|
|
|
<x-layouts.modules>
|
|
|
|
<x-slot name="title">
|
|
|
|
{{ trans_choice('general.modules', 2) }}
|
|
|
|
</x-slot>
|
2018-05-29 12:55:16 +03:00
|
|
|
|
2022-06-01 10:15:55 +03:00
|
|
|
<x-slot name="buttons">
|
|
|
|
<x-link href="{{ route('apps.api-key.create') }}">
|
|
|
|
{{ trans('modules.api_key') }}
|
|
|
|
</x-link>
|
2018-05-29 12:55:16 +03:00
|
|
|
|
2022-06-01 10:15:55 +03:00
|
|
|
<x-link href="{{ route('apps.my.index') }}">
|
|
|
|
{{ trans('modules.my_apps') }}
|
|
|
|
</x-link>
|
|
|
|
</x-slot>
|
2018-05-29 12:55:16 +03:00
|
|
|
|
2022-06-01 10:15:55 +03:00
|
|
|
<x-slot name="content">
|
2022-07-27 11:34:08 +03:00
|
|
|
@if (! empty($purchase) || ! empty($installed))
|
|
|
|
<x-modules.purchased />
|
2018-05-29 12:55:16 +03:00
|
|
|
|
2022-07-27 11:34:08 +03:00
|
|
|
<x-modules.installed />
|
|
|
|
@else
|
|
|
|
<div class="py-6 font-medium">
|
|
|
|
<div class="flex items-center justify-between mb-5 lg:mb-0">
|
|
|
|
<h4 class="py-3 font-medium lg:text-2xl">
|
|
|
|
{{ trans('modules.my_apps') }}
|
|
|
|
</h4>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<x-modules.no-apps />
|
|
|
|
</div>
|
|
|
|
@endif
|
2022-06-01 10:15:55 +03:00
|
|
|
</x-slot>
|
2020-03-14 16:15:29 +03:00
|
|
|
|
2022-06-01 10:15:55 +03:00
|
|
|
<x-script folder="modules" file="apps" />
|
|
|
|
</x-layouts.modules>
|