File "Kyc.php"

Full Path: /home/fundopuh/trader.fxex.org/app/Models/Kyc.php
File size: 313 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;

class Kyc extends Model
{
    use HasFactory;

    public function user()
    {
        return $this->hasOne(User::class);
    }
}