24 lines
415 B
PHP
24 lines
415 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
class IncomeCategory extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = [
|
|
'categoryName',
|
|
'business_id',
|
|
'categoryDescription',
|
|
'status',
|
|
];
|
|
|
|
protected $casts = [
|
|
'business_id' =>'integer',
|
|
'status' => 'boolean'
|
|
];
|
|
}
|