Skip to content

Commit

Permalink
Fix Published View & Localisation Paths (#1615)
Browse files Browse the repository at this point in the history
* Fixes for published paths
  • Loading branch information
lrljoe committed Dec 29, 2023
1 parent 4e75b3d commit 31c98aa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

All notable changes to `laravel-livewire-tables` will be documented in this file

## UNRELEASED
## [v3.1.6] - 2023-12-30
### New Features
- Add capability to call a new "addAdditionalSelects()" to append select table fields (without impacting setAdditionalSelect) by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/1609

### Bug Fixes
- Ensure mount() is called prior to bundler() executing by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/1603

### New Features
- Add capability to call a new "addAdditionalSelects()" to append select table fields (without impacting setAdditionalSelect) by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/1609
- Fix published view path by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/1615

## [v3.1.5] - 2023-12-09
### New Features
Expand Down
6 changes: 3 additions & 3 deletions src/LaravelLivewireTablesServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public function boot(): void

// Override if Published
$this->loadJsonTranslationsFrom(
$this->app->langPath('vendor/rappasoft/livewire-tables')
$this->app->langPath('vendor/livewire-tables')
);

$this->loadViewsFrom(__DIR__.'/../resources/views', 'livewire-tables');
Expand All @@ -45,15 +45,15 @@ public function consoleCommands()
if ($this->app->runningInConsole()) {

$this->publishes([
__DIR__.'/../resources/lang' => $this->app->langPath('vendor/rappasoft/livewire-tables'),
__DIR__.'/../resources/lang' => $this->app->langPath('vendor/livewire-tables'),
], 'livewire-tables-translations');

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

$this->publishes([
__DIR__.'/../resources/views' => resource_path('views/vendor/rappasoft/livewire-tables'),
__DIR__.'/../resources/views' => resource_path('views/vendor/livewire-tables'),
], 'livewire-tables-views');

$this->publishes([
Expand Down

0 comments on commit 31c98aa

Please sign in to comment.