16 lines
282 B
PHP
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');
|
|
}
|
|
} |