芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/erp.digitalhubbd.com/app/Models/Deposit.php
'integer', 'account_id' => 'integer', 'deposit_category_id' => 'integer', 'amount' => 'double', ]; public function user() { return $this->belongsTo('App\Models\User'); } public function account() { return $this->hasOne('App\Models\Account', 'id', 'account_id'); } public function deposit_category() { return $this->hasOne('App\Models\DepositCategory', 'id', 'deposit_category_id'); } }