24 lines
609 B
PHP
24 lines
609 B
PHP
@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="general-setting-table"></div>
|
|
</div>
|
|
</div>
|
|
|
|
@endsection
|
|
|
|
@section('scripts')
|
|
@vite(['resources/js/settings/general/general-settings.js'])
|
|
@endsection |