wahyu
1 year ago
1 changed files with 22 additions and 22 deletions
@ -1,22 +1,22 @@ |
|||||||
<?php |
<?php |
||||||
|
|
||||||
namespace App\Models; |
namespace App\Models; |
||||||
|
|
||||||
use Illuminate\Database\Eloquent\Model; |
use Illuminate\Database\Eloquent\Model; |
||||||
|
|
||||||
class CommentActivity extends Model |
class CommentActivity extends Model |
||||||
{ |
{ |
||||||
protected $table = 'm_comment_activity'; |
protected $table = 'm_comment_activity'; |
||||||
|
|
||||||
const CREATED_AT = 'created_at'; |
const CREATED_AT = 'created_at'; |
||||||
const UPDATED_AT = 'updated_at'; |
const UPDATED_AT = 'updated_at'; |
||||||
|
|
||||||
protected $fillable = [ |
protected $fillable = [ |
||||||
'activity_id', |
'activity_id', |
||||||
'comment', |
'comment', |
||||||
'created_at', |
'created_at', |
||||||
'created_by', |
'created_by', |
||||||
'updated_at', |
'updated_at', |
||||||
'updated_by' |
'updated_by' |
||||||
]; |
]; |
||||||
} |
} |
||||||
|
Loading…
Reference in new issue