Your IP : 216.73.217.77


Current Path : /home/users/unlimited/www/ultimate-ai.codeskitter.site/app/View/Composers/
Upload File :
Current File : /home/users/unlimited/www/ultimate-ai.codeskitter.site/app/View/Composers/PlanComposer.php

<?php

namespace App\View\Composers;

use App\Helpers\Classes\PlanHelper;
use Illuminate\View\View;

class PlanComposer
{
    /**
     * Bind data to the view.
     */
    public function compose(View $view): void
    {

        $plan = PlanHelper::userPlan();

        $view->with([
            'userPlan' => $plan,
        ]);
    }
}