| 1 | <?php |
||
| 10 | class Contact extends MobileHandle |
||
| 11 | { |
||
| 12 | use HasAirtime, HasOTP, HasSchemalessAttributes; |
||
| 13 | |||
| 14 | protected $fillable = [ |
||
| 15 | 'mobile', |
||
| 16 | 'handle', |
||
| 17 | 'uri', |
||
| 18 | ]; |
||
| 19 | |||
| 20 | public $casts = [ |
||
| 21 | 'extra_attributes' => 'array', |
||
| 22 | ]; |
||
| 23 | |||
| 24 | protected function getTableIndex(): string |
||
| 28 | |||
| 29 | public function setURIAttribute($value) |
||
| 35 | |||
| 36 | public function getURIAttribute(): string |
||
| 40 | } |
||
| 41 |