Skip to content

Commit

Permalink
changed slug to id
Browse files Browse the repository at this point in the history
  • Loading branch information
neerajsohal committed Jun 30, 2023
1 parent 5bdd3f4 commit 683c36d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion resources/views/livewire/onboarding/choose-plan.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
</li>
@endforeach
</ul>
<x-slate::button :link="route('onboarding.register', ['plan' => $plan['slug']])" >Get started</x-slate::button>
<x-slate::button :link="route('onboarding.register', ['plan' => $plan['id']])" >Get started</x-slate::button>
</div>
@endforeach

Expand Down
8 changes: 6 additions & 2 deletions src/Console/InstallCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,12 @@ public function boot()
$this->components->info('Database installed.');

$this->line('');
$this->components->info('Electrik installed successfully.');

$this->components->warn('Note: Do not forget to update the following for this app to run properly:');
$this->components->warn('1. electrik.php and plans.php in config folder');
$this->components->warn('2. CASHIER keys in your .env file');
$this->line('');
$this->components->info('Electrik installed successfully.');

return 0;
}

Expand Down

0 comments on commit 683c36d

Please sign in to comment.