Files
w4rpservices/app/Models/Jobs/JobProcessWalletTransaction.php
2019-05-04 23:24:55 -05:00

24 lines
332 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class JobProcessWalletTransaction extends Model
{
//Timestamps
public $timestamps = false;
/**
* The attributes that are mass assignable
*
* @var array
*/
protected $fillable = [
'charId',
'division',
];
}
?>