File "Plans.php"

Full Path: /home/fundopuh/trader.fxex.org/app/Models/Plans.php
File size: 488 bytes
MIME-type: text/x-php
Charset: utf-8

<?php  
// this Code is Cracked by dharunMods-YouTube-Channel

namespace App\Models;

use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\HasMany;

class Plans extends Model
{
    use HasFactory;

    protected $guarded = [];
    // has many users with this plan in user_plans table
    public function userPlans(): HasMany
    {
        return $this->hasMany(User_plans::class, 'plan', 'id');
    }
}