for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class TechTipSystems extends Model
{
protected $primaryKey = 'tip_tag_id';
protected $fillable = ['tip_id', 'sys_id'];
// public function techTips()
// {
// return $this->balongsTo('App\TechTips');
// }
// public function systemTypes()
// return $this->hasMany('App\SystemTypes', 'sys_id', 'sys_id');
}