Files
opensem/app/Models/Botanic/Variety.php
2020-04-21 00:09:32 +02:00

16 lines
282 B
PHP

<?php
namespace App\Models\Botanic;
use Illuminate\Database\Eloquent\Model;
class Variety extends Model
{
protected $guarded = ['id'];
protected $table = 'botanic_varieties';
public function Specie()
{
return $this->belongsTo('App\Models\Botanic\Specie');
}
}