42 lines
719 B
PHP
42 lines
719 B
PHP
<?php
|
|
|
|
namespace App\Models\Finances;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class AllianceWalletJournal extends Model
|
|
{
|
|
/**
|
|
* Table Name
|
|
*/
|
|
protected $table = 'alliance_wallet_journal';
|
|
|
|
/**
|
|
* Timestamps
|
|
*/
|
|
public $timestamps = true;
|
|
|
|
/**
|
|
* The attributes that are mass assignable
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'id',
|
|
'corporation_id',
|
|
'division',
|
|
'amount',
|
|
'balance',
|
|
'context_id',
|
|
'context_id_type',
|
|
'date',
|
|
'description',
|
|
'first_party_id',
|
|
'reason',
|
|
'ref_type',
|
|
'second_party_id',
|
|
'tax',
|
|
'tax_receiver_id',
|
|
];
|
|
}
|