Skip to content

Commit

Permalink
Merge pull request #4 from io-digital/fix-route-registration
Browse files Browse the repository at this point in the history
Load routes correctly.
  • Loading branch information
garethnic authored Apr 30, 2020
2 parents 1325178 + 3ceddb4 commit 4b2634e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/PeachPaymentServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ public function boot()
__DIR__.'/../database/migrations/create_payment_results_table.php.stub' => database_path('migrations/' . date('Y_m_d_His', time()) . '_create_payment_results_table.php'),
__DIR__.'/../database/migrations/create_payment_events_table.php.stub' => database_path('migrations/' . date('Y_m_d_His', time()) . '_create_payment_events_table.php'),
], 'peachpayment-migrations');

$this->loadRoutesFrom(__DIR__.'/../routes/web.php');
}

$this->loadRoutesFrom(__DIR__.'/../routes/web.php');
}

/**
Expand Down

0 comments on commit 4b2634e

Please sign in to comment.