Skip to content

Commit

Permalink
Tweak Config Path
Browse files Browse the repository at this point in the history
  • Loading branch information
lrljoe committed Jul 20, 2023
1 parent 1f6bd46 commit 634d4a4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/LaravelLivewireTablesServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public function boot()
AboutCommand::add('Rappasoft Laravel Livewire Tables', fn () => ['Version' => '3.0.0']);

$this->mergeConfigFrom(
__DIR__.'/../config/config.php', 'livewire-tables'
__DIR__.'/../config/livewire-tables.php', 'livewire-tables'
);

$this->loadViewsFrom(__DIR__.'/../resources/views', 'livewire-tables');
Expand All @@ -27,7 +27,7 @@ public function boot()
]);

$this->publishes([
__DIR__.'/../config/config.php' => config_path('livewire-tables.php'),
__DIR__.'/../config/livewire-tables.php' => config_path('livewire-tables.php'),
], 'livewire-tables-config');

$this->publishes([
Expand All @@ -45,7 +45,7 @@ public function boot()
public function register()
{
$this->mergeConfigFrom(
__DIR__.'/../config/config.php', 'livewire-tables'
__DIR__.'/../config/livewire-tables.php', 'livewire-tables'
);
}
}

0 comments on commit 634d4a4

Please sign in to comment.