You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
341 B
PHTML

<?php
namespace App\Models;
class DepositHistory extends Model
{
const VALID = 0;
const WAIT = 1;
const INVALID = 2;
protected $fillable = [
'debit',
'credit',
'description',
'customer_id',
'related_type',
'related_id',
'is_valid',
'image_prove',
];
}