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

24 lines
344 B
PHP

<?php
namespace App\Models\Jobs;
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',
];
}
?>