31 lines
630 B
PHP
31 lines
630 B
PHP
<?php
|
|
|
|
namespace Modules\Admin\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Modules\Admin\Database\factories\AppreciationFactory;
|
|
|
|
class Appreciation extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'tbl_appreciations';
|
|
protected $primaryKey = 'appreciation_id';
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*/
|
|
protected $fillable = [
|
|
'title',
|
|
'alias',
|
|
'type',
|
|
'employee_id',
|
|
'appreciated_by',
|
|
'appreciated_date',
|
|
'status',
|
|
'description',
|
|
'remarks',
|
|
];
|
|
|
|
}
|