order_gizi/app/Models/Survey.php

26 lines
560 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Survey extends Model
{
protected $connection = 'dbOrderGizi';
protected $table = 'public.survey';
public $timestamps = false;
protected $primaryKey = "id";
protected $with = ['order'];
protected $fillable =[
'no_order',
'type',
'keterangan',
'kepuasan',
'created_at'
];
public function order(){
return $this->belongsTo(Order::class, 'no_order', 'no_order')->select('no_order', 'nama_pemesan');
}
}