Blame view
app/Models/foto_area.php
300 Bytes
242debab8 Первый коммит в п... |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class foto_area extends Model { use HasFactory; protected $table = 'foto_area'; public function areas() { return $this->belongsTo(Area::class); } } |