Advertisement
Ostap34PHP

Untitled

Jan 13th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. <?php
  2.  
  3. namespace App;
  4.  
  5. use Illuminate\Database\Eloquent\Model;
  6.  
  7. class City extends Model
  8. {
  9.     protected $fillable = ['name'];
  10.  
  11.     public function region()
  12.     {
  13.         return $this->hasMany('App\Region');
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement