/home/thegtkjw/cresviafinancial.com/project__549d4a8/app/Models/Deposit.php
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Deposit extends Model
{
    protected $fillable = [
        'user_id',
        'deposit_number',
        'amount',
        'currency_id',
        'txnid',
        'method',
        'charge_id',
        'status',
    ];

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