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