| 1 | <?php |
||
| 9 | class Person extends Model implements Transformable |
||
| 10 | { |
||
| 11 | use TransformableTrait; |
||
| 12 | |||
| 13 | protected $fillable = [ |
||
| 14 | 'username', |
||
| 15 | 'email', 'tsi', |
||
| 16 | 'birth_date', |
||
| 17 | 'name', |
||
| 18 | 'dni', |
||
| 19 | 'location', |
||
| 20 | 'sex', |
||
| 21 | 'telephone', |
||
| 22 | 'mobile_phone', |
||
| 23 | 'first_surname', |
||
| 24 | 'second_surname', |
||
| 25 | 'personal_email', |
||
| 26 | 'postal_code', |
||
| 27 | 'user_id' |
||
| 28 | ]; |
||
| 29 | |||
| 30 | public function user() |
||
| 34 | } |
||
| 35 |