| 1 | <?php |
||
| 2 | |||
| 3 | namespace Digikraaft\StripeCustomersTile; |
||
| 4 | |||
| 5 | use Illuminate\Support\ServiceProvider; |
||
| 6 | use Livewire\Livewire; |
||
| 7 | |||
| 8 | class StripeCustomersTileServiceProvider extends ServiceProvider |
||
| 9 | { |
||
| 10 | public function boot() |
||
| 11 | { |
||
| 12 | if ($this->app->runningInConsole()) { |
||
| 13 | $this->commands([ |
||
| 14 | FetchCustomersDataFromStripeApi::class, |
||
| 15 | ]); |
||
| 16 | } |
||
| 17 | |||
| 18 | $this->publishes([ |
||
| 19 | __DIR__ . '/../resources/views' => resource_path('views/vendor/stripe-customers-tile'), |
||
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
| 20 | ], 'stripe-customers-tile-views'); |
||
| 21 | |||
| 22 | $this->loadViewsFrom(__DIR__ . '/../resources/views', 'dashboard-stripe-customers-tile'); |
||
| 23 | |||
| 24 | Livewire::component('stripe-customers-tile', StripeCustomersTileComponent::class); |
||
| 25 | } |
||
| 26 | } |
||
| 27 |