Skip to content

Commit bd80eeb

Browse files
committed
Merge branch 'KenLewis-patch-2' into develop
2 parents a8ce6e5 + 2f92a5b commit bd80eeb

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ All notable changes to `laravel-livewire-tables` will be documented in this file
1313
### Changed
1414

1515
- Add second parameter to view method for the name of the model variable available in the view.
16+
- Allow publishing of views
1617

1718
## [0.1.5] - 2020-05-26
1819

src/LivewireTablesServiceProvider.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,9 @@ class LivewireTablesServiceProvider extends ServiceProvider
1515
public function boot()
1616
{
1717
$this->loadViewsFrom(__DIR__.'/../resources/views', 'laravel-livewire-tables');
18+
19+
$this->publishes([
20+
__DIR__.'/../resources/views' => resource_path('views/vendor/laravel-livewire-tables'),
21+
]);
1822
}
1923
}

0 commit comments

Comments
 (0)