44 lines
829 B
PHP
44 lines
829 B
PHP
<?php
|
|
|
|
namespace Modules\Office\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Modules\Office\Database\factories\DepositFactory;
|
|
|
|
class Deposit extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = "tbl_deposits";
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*/
|
|
protected $fillable = [
|
|
'title',
|
|
'party',
|
|
'total_amount',
|
|
'amount_in_words',
|
|
'thousand',
|
|
'five_hundred',
|
|
'hundred',
|
|
'fifty',
|
|
'twenty',
|
|
'ten',
|
|
'five',
|
|
'two',
|
|
'one',
|
|
'deposited_date',
|
|
'account_no',
|
|
'received_by',
|
|
'deposited_by',
|
|
'status',
|
|
'description',
|
|
'remarks',
|
|
'createdBy',
|
|
'updatedBy',
|
|
];
|
|
|
|
}
|