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

namespace App\Models;

use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\HasMany;

class Service extends Model
{
    public function portfolios() : HasMany
    {
        return $this->hasMany('App\Models\Portfolio');
    }
    public function language() {
        return $this->belongsTo('App\Language');
    }
}