Blame view
app/Models/Area.php
634 Bytes
242debab8 Первый коммит в п... |
1 2 3 4 5 6 7 8 9 10 |
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Area extends Model { use HasFactory; |
7c115bff1 Админка - объекты... |
11 |
protected $fillable = ['name_area', 'description', 'foto_main', 'coord_x', 'coord_y']; |
242debab8 Первый коммит в п... |
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
/* * Связь Объектов недвижимости с офисами */ public function house() { return $this->hasMany(House::class); } /* * Связь объектов недвижимости с фотогалереей */ public function fotos() { return $this->hasMany(foto_area::class); } } |