Skip to content

Commit

Permalink
Fixed a typo causing the vendor publish to fail!
Browse files Browse the repository at this point in the history
Fixed the issue
  • Loading branch information
gopal-g committed Feb 9, 2018
1 parent 61991ad commit 210f28d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/PaymentServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ public function register()
{
$this->publishes([
__DIR__ . '/Config/config.php' => base_path('config/payment.php'),
__DIR__ . '/views/middleware.blade.php' => base_path('app/Http/Middleware/VerifyCsrfMiddleware.php'),
__DIR__ . '/views/ccavenue.blade.php' => resource_path('views/vendor/payment/ccavenue.blade.php'),
__DIR__ . '/Views/middleware.blade.php' => base_path('app/Http/Middleware/VerifyCsrfMiddleware.php'),
__DIR__ . '/Views/ccavenue.blade.php' => resource_path('views/vendor/payment/ccavenue.blade.php'),
]);

$this->loadViewsFrom(__DIR__ . '/views', 'payment');
Expand Down

0 comments on commit 210f28d

Please sign in to comment.