first commit
This commit is contained in:
43
Modules/Office/app/Models/Deposit.php
Normal file
43
Modules/Office/app/Models/Deposit.php
Normal file
@ -0,0 +1,43 @@
|
||||
<?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',
|
||||
];
|
||||
|
||||
}
|
Reference in New Issue
Block a user