18 lines
418 B
PHP
18 lines
418 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Loan extends Model
|
|
{
|
|
protected $table = 'loan';
|
|
public $timestamps = false;
|
|
protected $fillable = ['user_id', 'amount', 'card_image', 'cardbm_image', 'hand_image', 'institution', 'status', 'remark', 'create_time', 'update_time'];
|
|
|
|
public function user()
|
|
{
|
|
return $this->belongsTo(Users::class, 'user_id', 'id');
|
|
}
|
|
}
|