<?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');
}
}