Files
faveo/app/Model/helpdesk/Agent_panel/User_org.php
Manish Verma 2d8e640e9b Updates
2016-12-13 18:18:25 +05:30

24 lines
478 B
PHP

<?php
namespace App\Model\helpdesk\Agent_panel;
use App\BaseModel;
class User_org extends BaseModel
{
/* define table name */
protected $table = 'user_assign_organization';
/* define fillable fields */
protected $fillable = ['id', 'org_id', 'user_id'];
public function setOrgIdAttribute($value){
if($value==""){
$this->attributes['org_id'] = null;
}else{
$this->attributes['org_id'] = $value;
}
}
}