• File: Period.php
  • Full Path: /var/www/paytekchalenge/app/Models/Period.php
  • Date Modified: 07/19/2022 7:23 PM
  • File size: 295 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Period extends Model
{
    //
    protected $fillable = ['name'];

    public $table = "periods";

    public function period(){
        return $this->hasMany('App\Models\Quota','periods_id');
    }
}