Skip to content

Commit

Permalink
fix SocialServiceProvider publish files
Browse files Browse the repository at this point in the history
  • Loading branch information
Sashagm committed Dec 7, 2023
1 parent 9e9ccac commit 9f89ade
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/Providers/SocialServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,14 @@ public function register(): void

public function boot()
{
$this->publishFiles();

$this->registerRouter();

$this->registerMigrate();

$this->registerLang();

$this->publishFiles();

$this->registerCommands();

$this->loadBlade();
Expand Down
2 changes: 1 addition & 1 deletion src/routes/social.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
use Sashagm\Social\Http\Controllers\AuthController;
use Sashagm\Social\Http\Controllers\LoginController;

$routes = config('socials.routes', []);
$routes = config('socials.routes', []);

Route::group(['middleware' => ['web', 'guest'], 'prefix' => config('socials.admin_prefix')], function () use ($routes) {

Expand Down

0 comments on commit 9f89ade

Please sign in to comment.