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

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Jcategory extends Model
{
    public function jobs()
    {
    	return $this->hasMany('App\Models\Job');
    }
}