49 lines
984 B
PHP
Executable File
49 lines
984 B
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* Created by Reliese Model.
|
|
*/
|
|
|
|
namespace App\Models;
|
|
|
|
use Carbon\Carbon;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* Class UsersBankingAccountVerification
|
|
*
|
|
* @property int $id
|
|
* @property string $id_transaction
|
|
* @property string $user_code
|
|
* @property string $iban
|
|
* @property int $id_bank_country
|
|
* @property int $id_network
|
|
* @property bool $is_verified
|
|
* @property bool $was_treated
|
|
* @property Carbon $created_at
|
|
* @property Carbon $updated_at
|
|
*
|
|
* @package App\Models
|
|
*/
|
|
class UsersBankingAccountVerification extends Model
|
|
{
|
|
protected $table = 'users_banking_account_verification';
|
|
|
|
protected $casts = [
|
|
'id_bank_country' => 'int',
|
|
'id_network' => 'int',
|
|
'is_verified' => 'bool',
|
|
'was_treated' => 'bool'
|
|
];
|
|
|
|
protected $fillable = [
|
|
'id_transaction',
|
|
'user_code',
|
|
'iban',
|
|
'id_bank_country',
|
|
'id_network',
|
|
'is_verified',
|
|
'was_treated'
|
|
];
|
|
}
|