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
|
||||
*/
|
||||
'inject_core_assets_enabled' => true,
|
||||
'inject_core_assets_enabled' => false,
|
||||
|
||||
/**
|
||||
* 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)
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
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 Clipboard from '@ryangjchandler/alpine-clipboard'
|
||||
|
||||
@ -8,6 +8,8 @@
|
||||
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
||||
@livewireStyles
|
||||
@fluxAppearance
|
||||
@rappasoftTableStyles
|
||||
@rappasoftTableThirdPartyStyles
|
||||
<link rel="icon" type="image/png" href="{{ asset('assets/images/logo.png') }}">
|
||||
<link rel="preconnect" href="https://fonts.bunny.net">
|
||||
<link href="https://fonts.bunny.net/css?family=inter:400,500,600&display=swap" rel="stylesheet" />
|
||||
@ -23,8 +25,10 @@
|
||||
|
||||
{{ $slot }}
|
||||
|
||||
@fluxScripts
|
||||
@livewireScriptConfig
|
||||
@fluxScripts
|
||||
@rappasoftTableScripts
|
||||
@rappasoftTableThirdPartyScripts
|
||||
<script>
|
||||
document.addEventListener('livewire:navigated', () => {
|
||||
Notification.requestPermission().then((permission) => {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user