ok

Mini Shell

Direktori : /home2/selectio/public_html/billingsoftwarenew/core/app/Models/
Upload File :
Current File : /home2/selectio/public_html/billingsoftwarenew/core/app/Models/WithdrawMethod.php

<?php

namespace App\Models;

use App\Traits\GlobalStatus;
use Illuminate\Database\Eloquent\Model;

class WithdrawMethod extends Model {
    use GlobalStatus;

    protected $casts = [
        'user_data' => 'object',
    ];

    public function form() {
        return $this->belongsTo(Form::class);
    }

    public function verifications() {
        return $this->morphMany(OtpVerification::class, 'verifiable');
    }
}

Zerion Mini Shell 1.0