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.

29 lines
471 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',
'payment_token',
'payment_status',
'payment_response',
'payment_channel',
'payment_type',
];
}