financials

This commit is contained in:
2019-01-06 03:36:01 -06:00
parent 1026bf370a
commit 062939d2c8
16 changed files with 526 additions and 6 deletions

View File

@@ -0,0 +1,41 @@
<?php
namespace App\Models\Finances;
use Illuminate\Database\Eloquent\Model;
class OfficeFeesJournal extends Model
{
/**
* Table Name
*/
protected $table = 'office_fees_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',
];
}