• File: Job.php
  • Full Path: /home/masbinta/public_html/core/app/Models/Job.php
  • File size: 229 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Job extends Model
{
    public $timestamps = false;
    public function jcategory()
    {
    	return $this->belongsTo('App\Models\Jcategory');
    }
}