Implemented the new index layout for the index pages
Implemented the new index layout for the index pages. domains, misc, reseller, seedboxes and shared use this layout
This commit is contained in:
parent
25822351ef
commit
dd8564a23e
|
@ -1,15 +1,12 @@
|
||||||
@section("title", "Domains")
|
@extends('layouts.index')
|
||||||
@section('style')
|
@section('title', 'Domains')
|
||||||
|
@section('css_style')
|
||||||
<x-modal-style></x-modal-style>
|
<x-modal-style></x-modal-style>
|
||||||
@endsection
|
@endsection
|
||||||
@section('scripts')
|
@section('header')
|
||||||
<script src="{{ asset('js/vue.min.js') }}"></script>
|
|
||||||
<script src="{{ asset('js/axios.min.js') }}"></script>
|
|
||||||
@endsection
|
|
||||||
<x-app-layout>
|
|
||||||
<x-slot name="header">
|
|
||||||
{{ __('Domains') }}
|
{{ __('Domains') }}
|
||||||
</x-slot>
|
@endsection
|
||||||
|
@section('content')
|
||||||
<div class="container" id="app">
|
<div class="container" id="app">
|
||||||
<x-delete-confirm-modal></x-delete-confirm-modal>
|
<x-delete-confirm-modal></x-delete-confirm-modal>
|
||||||
<x-card class="shadow mt-3">
|
<x-card class="shadow mt-3">
|
||||||
|
@ -70,4 +67,4 @@
|
||||||
<x-modal-delete-script>
|
<x-modal-delete-script>
|
||||||
<x-slot name="uri">domains</x-slot>
|
<x-slot name="uri">domains</x-slot>
|
||||||
</x-modal-delete-script>
|
</x-modal-delete-script>
|
||||||
</x-app-layout>
|
@endsection
|
||||||
|
|
|
@ -1,15 +1,12 @@
|
||||||
@section("title", "Misc services")
|
@extends('layouts.index')
|
||||||
@section('style')
|
@section('title', 'Misc')
|
||||||
|
@section('css_style')
|
||||||
<x-modal-style></x-modal-style>
|
<x-modal-style></x-modal-style>
|
||||||
@endsection
|
@endsection
|
||||||
@section('scripts')
|
@section('header')
|
||||||
<script src="{{ asset('js/vue.min.js') }}"></script>
|
{{ __('Misc') }}
|
||||||
<script src="{{ asset('js/axios.min.js') }}"></script>
|
|
||||||
@endsection
|
@endsection
|
||||||
<x-app-layout>
|
@section('content')
|
||||||
<x-slot name="header">
|
|
||||||
{{ __('Misc services') }}
|
|
||||||
</x-slot>
|
|
||||||
<div class="container" id="app">
|
<div class="container" id="app">
|
||||||
<x-delete-confirm-modal></x-delete-confirm-modal>
|
<x-delete-confirm-modal></x-delete-confirm-modal>
|
||||||
<x-card class="shadow mt-3">
|
<x-card class="shadow mt-3">
|
||||||
|
@ -52,7 +49,7 @@
|
||||||
@csrf
|
@csrf
|
||||||
@method('DELETE')
|
@method('DELETE')
|
||||||
<i class="fas fa-trash text-danger ms-3" @click="confirmDeleteModal"
|
<i class="fas fa-trash text-danger ms-3" @click="confirmDeleteModal"
|
||||||
id="{{$m->name}}" title="{{$m->id}}"></i>
|
id="{{$m->id}}" title="{{$m->name}}"></i>
|
||||||
</form>
|
</form>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -71,4 +68,4 @@
|
||||||
<x-modal-delete-script>
|
<x-modal-delete-script>
|
||||||
<x-slot name="uri">misc</x-slot>
|
<x-slot name="uri">misc</x-slot>
|
||||||
</x-modal-delete-script>
|
</x-modal-delete-script>
|
||||||
</x-app-layout>
|
@endsection
|
||||||
|
|
|
@ -1,16 +1,12 @@
|
||||||
@section("title", "Resellers")
|
@extends('layouts.index')
|
||||||
@section('style')
|
@section('title', 'Resellers')
|
||||||
|
@section('css_style')
|
||||||
<x-modal-style></x-modal-style>
|
<x-modal-style></x-modal-style>
|
||||||
@endsection
|
@endsection
|
||||||
@section('scripts')
|
@section('header')
|
||||||
<script src="{{ asset('js/vue.min.js') }}"></script>
|
|
||||||
<script src="{{ asset('js/axios.min.js') }}"></script>
|
|
||||||
@endsection
|
|
||||||
<x-app-layout>
|
|
||||||
<x-slot name="header">
|
|
||||||
{{ __('Reseller') }}
|
{{ __('Reseller') }}
|
||||||
</x-slot>
|
@endsection
|
||||||
|
@section('content')
|
||||||
<div class="container" id="app">
|
<div class="container" id="app">
|
||||||
<x-delete-confirm-modal></x-delete-confirm-modal>
|
<x-delete-confirm-modal></x-delete-confirm-modal>
|
||||||
<div class="card shadow mt-3">
|
<div class="card shadow mt-3">
|
||||||
|
@ -78,4 +74,4 @@
|
||||||
<x-modal-delete-script>
|
<x-modal-delete-script>
|
||||||
<x-slot name="uri">reseller</x-slot>
|
<x-slot name="uri">reseller</x-slot>
|
||||||
</x-modal-delete-script>
|
</x-modal-delete-script>
|
||||||
</x-app-layout>
|
@endsection
|
||||||
|
|
|
@ -1,15 +1,12 @@
|
||||||
@section("title", "Seed boxes")
|
@extends('layouts.index')
|
||||||
@section('style')
|
@section('title', 'Seed boxes')
|
||||||
|
@section('css_style')
|
||||||
<x-modal-style></x-modal-style>
|
<x-modal-style></x-modal-style>
|
||||||
@endsection
|
@endsection
|
||||||
@section('scripts')
|
@section('header')
|
||||||
<script src="{{ asset('js/vue.min.js') }}"></script>
|
|
||||||
<script src="{{ asset('js/axios.min.js') }}"></script>
|
|
||||||
@endsection
|
|
||||||
<x-app-layout>
|
|
||||||
<x-slot name="header">
|
|
||||||
{{ __('Seed boxes') }}
|
{{ __('Seed boxes') }}
|
||||||
</x-slot>
|
@endsection
|
||||||
|
@section('content')
|
||||||
<div class="container" id="app">
|
<div class="container" id="app">
|
||||||
<x-delete-confirm-modal></x-delete-confirm-modal>
|
<x-delete-confirm-modal></x-delete-confirm-modal>
|
||||||
<div class="card shadow mt-3">
|
<div class="card shadow mt-3">
|
||||||
|
@ -96,12 +93,9 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@if(Session::has('timer_version_footer') && Session::get('timer_version_footer') === 1)
|
<x-details-footer></x-details-footer>
|
||||||
<p class="text-muted mt-4 text-end"><small>Built on Laravel
|
|
||||||
v{{ Illuminate\Foundation\Application::VERSION }} (PHP v{{ PHP_VERSION }})</small></p>
|
|
||||||
@endif
|
|
||||||
</div>
|
</div>
|
||||||
<x-modal-delete-script>
|
<x-modal-delete-script>
|
||||||
<x-slot name="uri">seedboxes</x-slot>
|
<x-slot name="uri">seedboxes</x-slot>
|
||||||
</x-modal-delete-script>
|
</x-modal-delete-script>
|
||||||
</x-app-layout>
|
@endsection
|
||||||
|
|
|
@ -1,15 +1,12 @@
|
||||||
@section("title", "Shared hosting")
|
@extends('layouts.index')
|
||||||
@section('style')
|
@section('title', 'Shared hosting')
|
||||||
|
@section('css_style')
|
||||||
<x-modal-style></x-modal-style>
|
<x-modal-style></x-modal-style>
|
||||||
@endsection
|
@endsection
|
||||||
@section('scripts')
|
@section('header')
|
||||||
<script src="{{ asset('js/vue.min.js') }}"></script>
|
{{ __('Shared') }}
|
||||||
<script src="{{ asset('js/axios.min.js') }}"></script>
|
|
||||||
@endsection
|
@endsection
|
||||||
<x-app-layout>
|
@section('content')
|
||||||
<x-slot name="header">
|
|
||||||
{{ __('Shared hosting') }}
|
|
||||||
</x-slot>
|
|
||||||
<div class="container" id="app">
|
<div class="container" id="app">
|
||||||
<x-delete-confirm-modal></x-delete-confirm-modal>
|
<x-delete-confirm-modal></x-delete-confirm-modal>
|
||||||
<div class="card shadow mt-3">
|
<div class="card shadow mt-3">
|
||||||
|
@ -79,4 +76,4 @@
|
||||||
<x-modal-delete-script>
|
<x-modal-delete-script>
|
||||||
<x-slot name="uri">shared</x-slot>
|
<x-slot name="uri">shared</x-slot>
|
||||||
</x-modal-delete-script>
|
</x-modal-delete-script>
|
||||||
</x-app-layout>
|
@endsection
|
||||||
|
|
Loading…
Reference in New Issue
Block a user