add dashboard, fix get data scraping, fix table
This commit is contained in:
31
resources/views/settings/general/create.blade.php
Normal file
31
resources/views/settings/general/create.blade.php
Normal file
@@ -0,0 +1,31 @@
|
||||
@extends('layouts.vertical', ['subtitle' => 'Create User'])
|
||||
|
||||
@section('content')
|
||||
|
||||
@include('layouts.partials/page-title', ['title' => 'Se', 'subtitle' => 'Syncronize'])
|
||||
|
||||
<div class="row">
|
||||
<div class="columns-md">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<form>
|
||||
<div class="mb-3">
|
||||
<label for="keyInput" class="form-label">Key</label>
|
||||
<input type="text" id="simpleinput" class="form-control">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label for="valueInput" class="form-label">Value</label>
|
||||
<input type="text" id="simpleinput" class="form-control">
|
||||
</div>
|
||||
<button type="button" class="btn btn-outline-success width-lg">Create</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@endsection
|
||||
|
||||
@section('scripts')
|
||||
@vite(['resources/js/tables/common-table.js'])
|
||||
@endsection
|
||||
24
resources/views/settings/general/index.blade.php
Normal file
24
resources/views/settings/general/index.blade.php
Normal file
@@ -0,0 +1,24 @@
|
||||
@extends('layouts.vertical', ['subtitle' => 'Syncronize'])
|
||||
|
||||
@section('css')
|
||||
@vite(['node_modules/gridjs/dist/theme/mermaid.min.css'])
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
|
||||
@include('layouts.partials/page-title', ['title' => 'Settings', 'subtitle' => 'Syncronize'])
|
||||
|
||||
<div class="row">
|
||||
<div class="d-flex justify-content-end pb-3">
|
||||
<button type="button" class="btn btn-outline-success width-lg">Create</button>
|
||||
</div>
|
||||
<div>
|
||||
<div id="common-table"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@endsection
|
||||
|
||||
@section('scripts')
|
||||
@vite(['resources/js/tables/common-table.js'])
|
||||
@endsection
|
||||
20
resources/views/settings/syncronize/index.blade.php
Normal file
20
resources/views/settings/syncronize/index.blade.php
Normal file
@@ -0,0 +1,20 @@
|
||||
@extends('layouts.vertical', ['subtitle' => 'Syncronize'])
|
||||
|
||||
@section('content')
|
||||
|
||||
@include('layouts.partials/page-title', ['title' => 'Settings', 'subtitle' => 'Syncronize'])
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-12 col-xl-12 d-flex justify-content-end">
|
||||
<form action="{{route('settings.sync')}}" method="post" id="sync-form">
|
||||
@csrf
|
||||
<button type="submit" class="btn btn-success width-lg" id="btn-sync-submit">Sync SIMBG</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@endsection
|
||||
|
||||
@section('scripts')
|
||||
@vite(['resources/js/settings/syncronize/syncronize.js'])
|
||||
@endsection
|
||||
Reference in New Issue
Block a user