| 123456789101112131415161718192021222324252627 |
- <?php
- namespace App;
- use Illuminate\Database\Eloquent\Model;
- use App\Traits\ModelTimeFormat;
- class City extends Model
- {
- use ModelTimeFormat;
- protected $fillable=[
- 'province_id','name','type'
- ];
- protected $appends=[
- 'province_name'
- ];
- public function province(){
- return $this->belongsTo('App\Province','province_id','id');
- }
- public function getProvinceNameAttribute(){
- return $this['province']? $this['province']['name']:null;
- }
- }
|