MIF_E31231003/app/Models/ProspekKerja.php

18 lines
298 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class ProspekKerja extends Model
{
protected $table = 'prospek_kerja';
protected $fillable = ['jurusan_id', 'tipe', 'isi'];
public function jurusan()
{
return $this->belongsTo(Jurusan::class);
}
}