feat(datatable): menyesuaikan konfigurasinya
This commit is contained in:
parent
7c55263a98
commit
816526ac95
@ -18,12 +18,12 @@
|
|||||||
/**
|
/**
|
||||||
* Enable or Disable automatic injection of core assets
|
* Enable or Disable automatic injection of core assets
|
||||||
*/
|
*/
|
||||||
'inject_core_assets_enabled' => true,
|
'inject_core_assets_enabled' => false,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Enable or Disable automatic injection of third-party assets
|
* Enable or Disable automatic injection of third-party assets
|
||||||
*/
|
*/
|
||||||
'inject_third_party_assets_enabled' => true,
|
'inject_third_party_assets_enabled' => false,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Enable Blade Directives (Not required if automatically injecting or using bundler approaches)
|
* Enable Blade Directives (Not required if automatically injecting or using bundler approaches)
|
||||||
|
|||||||
@ -1,4 +1,5 @@
|
|||||||
import './bootstrap';
|
import './bootstrap';
|
||||||
|
import '../../vendor/rappasoft/laravel-livewire-tables/resources/imports/laravel-livewire-tables-all.js';
|
||||||
|
|
||||||
import { Livewire, Alpine } from '../../vendor/livewire/livewire/dist/livewire.esm';
|
import { Livewire, Alpine } from '../../vendor/livewire/livewire/dist/livewire.esm';
|
||||||
import Clipboard from '@ryangjchandler/alpine-clipboard'
|
import Clipboard from '@ryangjchandler/alpine-clipboard'
|
||||||
|
|||||||
@ -8,6 +8,8 @@
|
|||||||
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
||||||
@livewireStyles
|
@livewireStyles
|
||||||
@fluxAppearance
|
@fluxAppearance
|
||||||
|
@rappasoftTableStyles
|
||||||
|
@rappasoftTableThirdPartyStyles
|
||||||
<link rel="icon" type="image/png" href="{{ asset('assets/images/logo.png') }}">
|
<link rel="icon" type="image/png" href="{{ asset('assets/images/logo.png') }}">
|
||||||
<link rel="preconnect" href="https://fonts.bunny.net">
|
<link rel="preconnect" href="https://fonts.bunny.net">
|
||||||
<link href="https://fonts.bunny.net/css?family=inter:400,500,600&display=swap" rel="stylesheet" />
|
<link href="https://fonts.bunny.net/css?family=inter:400,500,600&display=swap" rel="stylesheet" />
|
||||||
@ -23,8 +25,10 @@
|
|||||||
|
|
||||||
{{ $slot }}
|
{{ $slot }}
|
||||||
|
|
||||||
@fluxScripts
|
|
||||||
@livewireScriptConfig
|
@livewireScriptConfig
|
||||||
|
@fluxScripts
|
||||||
|
@rappasoftTableScripts
|
||||||
|
@rappasoftTableThirdPartyScripts
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('livewire:navigated', () => {
|
document.addEventListener('livewire:navigated', () => {
|
||||||
Notification.requestPermission().then((permission) => {
|
Notification.requestPermission().then((permission) => {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user