32 lines
		
	
	
		
			861 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			861 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Livewire\Subscription;
 | |
| 
 | |
| use App\Models\InstanceSettings;
 | |
| use App\Providers\RouteServiceProvider;
 | |
| use Livewire\Component;
 | |
| 
 | |
| class Index extends Component
 | |
| {
 | |
|     public InstanceSettings $settings;
 | |
|     public bool $alreadySubscribed = false;
 | |
|     public function mount() {
 | |
|         if (!isCloud()) {
 | |
|             return redirect(RouteServiceProvider::HOME);
 | |
|         }
 | |
|         $this->settings = InstanceSettings::get();
 | |
|         $this->alreadySubscribed = currentTeam()->subscription()->exists();
 | |
|     }
 | |
|     public function stripeCustomerPortal() {
 | |
|         $session = getStripeCustomerPortalSession(currentTeam());
 | |
|         if (is_null($session)) {
 | |
|             return;
 | |
|         }
 | |
|         return redirect($session->url);
 | |
|     }
 | |
|     public function render()
 | |
|     {
 | |
|         return view('livewire.subscription.index')->layout('layouts.subscription');
 | |
|     }
 | |
| }
 | 
