18 lines
396 B
PHP
18 lines
396 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class DataKandang extends Model
|
|
{
|
|
protected $table = 'data_kandang';
|
|
protected $fillable = ['nama_kandang', 'kapasitas', 'id_peternakan','created_at','created_at'];
|
|
public $timestamps = true;
|
|
|
|
public function peternakan()
|
|
{
|
|
return $this->belongsTo(DataPeternakan::class, 'id_peternakan');
|
|
}
|
|
}
|