%PDF- %PDF-
Direktori : /var/www/html/klinisol/klinisol-api/app/Models/ |
Current File : /var/www/html/klinisol/klinisol-api/app/Models/Department.php |
<?php namespace App\Models; /** * @property integer id * @property string code * @property string host * @property string url * @property string database * @property boolean username * @property string password * @property bool is_active */ class Department extends BaseModel { protected $table = 'departments'; protected $fillable = [ 'code', 'department', 'hospital', 'url', 'host', 'port', 'database', 'username', 'password', 'is_active', ]; }