view file updates..
This commit is contained in:
@ -7,6 +7,7 @@
|
|||||||
@section('content')
|
@section('content')
|
||||||
<div role="alert" class="alert alert-success d-none" :class="(form.response.success) ? 'show' : ''" v-if="form.response.success" v-html="form.response.message"></div>
|
<div role="alert" class="alert alert-success d-none" :class="(form.response.success) ? 'show' : ''" v-if="form.response.success" v-html="form.response.message"></div>
|
||||||
<div role="alert" class="alert alert-danger d-none" :class="(form.response.error) ? 'show' : ''" v-if="form.response.error" v-html="form.response.message"></div>
|
<div role="alert" class="alert alert-danger d-none" :class="(form.response.error) ? 'show' : ''" v-if="form.response.error" v-html="form.response.message"></div>
|
||||||
|
|
||||||
{!! Form::open([
|
{!! Form::open([
|
||||||
'route' => 'forgot',
|
'route' => 'forgot',
|
||||||
'id' => 'forgot',
|
'id' => 'forgot',
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
<div role="alert" class="alert alert-danger d-none" :class="(form.response.error) ? 'show' : ''" v-if="form.response.error" v-html="form.response.message"></div>
|
<div role="alert" class="alert alert-danger d-none" :class="(form.response.error) ? 'show' : ''" v-if="form.response.error" v-html="form.response.message"></div>
|
||||||
|
|
||||||
{!! Form::open([
|
{!! Form::open([
|
||||||
'route' => 'login',
|
'route' => 'login',
|
||||||
'id' => 'login',
|
'id' => 'login',
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
@section('title', trans_choice('general.permissions', 2))
|
@section('title', trans_choice('general.permissions', 2))
|
||||||
|
|
||||||
@permission('update-auth-permissions')
|
@permission('create-auth-permissions')
|
||||||
@section('new_button')
|
@section('new_button')
|
||||||
<a href="{{ route('permissions.create') }}" class="btn btn-success btn-sm header-button-top"><span class="fa fa-plus"></span> {{ trans('general.add_new') }}</a>
|
<a href="{{ route('permissions.create') }}" class="btn btn-success btn-sm header-button-top"><span class="fa fa-plus"></span> {{ trans('general.add_new') }}</a>
|
||||||
@endsection
|
@endsection
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
|
|
||||||
@if ($pre_sale)
|
@if ($pre_sale)
|
||||||
<h2>{{ trans('modules.pre_sale') }}</h2>
|
<h2>{{ trans('modules.pre_sale') }}</h2>
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
@if ($pre_sale->data)
|
@if ($pre_sale->data)
|
||||||
@foreach ($pre_sale->data as $module)
|
@foreach ($pre_sale->data as $module)
|
||||||
@ -25,6 +26,7 @@
|
|||||||
|
|
||||||
@if ($paid)
|
@if ($paid)
|
||||||
<h2>{{ trans('modules.top_paid') }}</h2>
|
<h2>{{ trans('modules.top_paid') }}</h2>
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
@if ($paid->data)
|
@if ($paid->data)
|
||||||
@foreach ($paid->data as $module)
|
@foreach ($paid->data as $module)
|
||||||
@ -38,6 +40,7 @@
|
|||||||
|
|
||||||
@if ($new)
|
@if ($new)
|
||||||
<h2>{{ trans('modules.new') }}</h2>
|
<h2>{{ trans('modules.new') }}</h2>
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
@if ($new->data)
|
@if ($new->data)
|
||||||
@foreach ($new->data as $module)
|
@foreach ($new->data as $module)
|
||||||
@ -51,6 +54,7 @@
|
|||||||
|
|
||||||
@if ($free)
|
@if ($free)
|
||||||
<h2>{{ trans('modules.top_free') }}</h2>
|
<h2>{{ trans('modules.top_free') }}</h2>
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
@if ($free->data)
|
@if ($free->data)
|
||||||
@foreach ($free->data as $module)
|
@foreach ($free->data as $module)
|
||||||
|
@ -13,6 +13,7 @@
|
|||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-8">
|
<div class="col-md-8">
|
||||||
<h3>{{ $module->name }}</h3>
|
<h3>{{ $module->name }}</h3>
|
||||||
|
|
||||||
<div class="nav-wrapper">
|
<div class="nav-wrapper">
|
||||||
<ul class="nav nav-pills nav-fill flex-column flex-md-row" id="tabs-icons-text" role="tablist">
|
<ul class="nav nav-pills nav-fill flex-column flex-md-row" id="tabs-icons-text" role="tablist">
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
@ -49,6 +50,7 @@
|
|||||||
|
|
||||||
<div class="col-md-4">
|
<div class="col-md-4">
|
||||||
<h3>{{ trans_choice('general.actions', 1) }}</h3>
|
<h3>{{ trans_choice('general.actions', 1) }}</h3>
|
||||||
|
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<div id="countdown-pre-sale"></div>
|
<div id="countdown-pre-sale"></div>
|
||||||
@ -94,8 +96,8 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<h3>{{ trans('modules.about') }}</h3>
|
<h3>{{ trans('modules.about') }}</h3>
|
||||||
|
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<table class="table">
|
<table class="table">
|
||||||
<tbody>
|
<tbody>
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
@include('partials.modules.bar')
|
@include('partials.modules.bar')
|
||||||
|
|
||||||
<h2>{{ trans('modules.my.purchased') }}</h2>
|
<h2>{{ trans('modules.my.purchased') }}</h2>
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
@if ($purchased)
|
@if ($purchased)
|
||||||
@foreach ($purchased as $module)
|
@foreach ($purchased as $module)
|
||||||
@ -24,6 +25,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h2>{{ trans('modules.my.installed') }}</h2>
|
<h2>{{ trans('modules.my.installed') }}</h2>
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
@if ($modules)
|
@if ($modules)
|
||||||
@foreach ($modules as $module)
|
@foreach ($modules as $module)
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
@include('partials.modules.bar')
|
@include('partials.modules.bar')
|
||||||
|
|
||||||
<h2>{{ $title }}</h2>
|
<h2>{{ $title }}</h2>
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
@if ($modules)
|
@if ($modules)
|
||||||
@foreach ($modules->data as $module)
|
@foreach ($modules->data as $module)
|
||||||
@ -32,7 +33,6 @@
|
|||||||
<a href="{{ url(request()->path()) }}?page={{ $modules->current_page + 1 }}" class="btn btn-white btn-sm button-header-top">{!! trans('pagination.next') !!} <span class="fas fa-arrow-right"></span> </a>
|
<a href="{{ url(request()->path()) }}?page={{ $modules->current_page + 1 }}" class="btn btn-white btn-sm button-header-top">{!! trans('pagination.next') !!} <span class="fas fa-arrow-right"></span> </a>
|
||||||
@endif
|
@endif
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@else
|
@else
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
@include('partials.modules.no_apps')
|
@include('partials.modules.no_apps')
|
||||||
@ -44,4 +44,3 @@
|
|||||||
@push('scripts_start')
|
@push('scripts_start')
|
||||||
<script src="{{ asset('public/js/modules/apps.js?v=' . version('short')) }}"></script>
|
<script src="{{ asset('public/js/modules/apps.js?v=' . version('short')) }}"></script>
|
||||||
@endpush
|
@endpush
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user