WP File Manager
Current Path:
/
home
/
itutorethiopia
/
public_html
/
vendor
/
laravel
/
cashier
/
src
/
Name
Action
..
Billable.php
Edit
Card.php
Edit
Cashier.php
Edit
CashierServiceProvider.php
Edit
Http
Invoice.php
Edit
InvoiceItem.php
Edit
Subscription.php
Edit
SubscriptionBuilder.php
Edit
Editing: CashierServiceProvider.php
<?php namespace Laravel\Cashier; use Illuminate\Support\ServiceProvider; class CashierServiceProvider extends ServiceProvider { /** * Bootstrap the application events. * * @return void */ public function boot() { $this->loadViewsFrom(__DIR__.'/../resources/views', 'cashier'); $this->publishes([ __DIR__.'/../resources/views' => $this->app->basePath('resources/views/vendor/cashier'), ]); } /** * Register the service provider. * * @return void */ public function register() { // } }