Browse Source

update company_id fillable

pull/1/head
wahyuun 7 months ago
parent
commit
493ebb1cda
  1. 2
      app/Models/ProjectRole.php
  2. 2
      app/Models/User.php

2
app/Models/ProjectRole.php

@ -12,6 +12,6 @@ class ProjectRole extends Model
const UPDATED_AT = 'updated_at';
protected $fillable = [
'name', 'description', 'created_at', 'created_by', 'updated_at', 'updated_by'
'name', 'description', 'created_at', 'created_by', 'updated_at', 'company_id', 'updated_by'
];
}

2
app/Models/User.php

@ -24,7 +24,7 @@ class User extends Model implements AuthenticatableContract, AuthorizableContrac
protected $fillable = [
'name', 'email', 'role_id', 'username', 'session_login', 'phone_number', 'email', 'address',
'fcm_token', 'gender', 'birth_place', 'birth_date', 'blood_type', 'ktp_number', 'working_hours',
'created_at', 'created_by', 'updated_at', 'updated_by', 'status_resource', 'discount_id'
'created_at', 'created_by', 'updated_at', 'updated_by', 'status_resource', 'discount_id','company_id'
];
const CREATED_AT = 'created_at';

Loading…
Cancel
Save