Skip to content
This repository has been archived by the owner on Oct 22, 2020. It is now read-only.

Commit

Permalink
fix vendor publish command errors
Browse files Browse the repository at this point in the history
now routes includes and don't need to use loadRoutesFrom method .
  • Loading branch information
TrueMoein committed Oct 9, 2017
1 parent 4917692 commit 42b2113
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SmsirServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class SmsirServiceProvider extends ServiceProvider
public function boot()
{
// the main router
$this->loadRoutesFrom(__DIR__.'/routes.php');
include __DIR__.'/routes.php';
// the main views folder
$this->loadViewsFrom(__DIR__.'/views', 'smsir');
// the main migration folder for create smsir tables
Expand Down

0 comments on commit 42b2113

Please sign in to comment.