<?php namespace App\Models; # use Illuminate\Database\Eloquent\Model; class Note extends Model { protected $table = "note"; public function bills(){ return $this->hasMany(Bill::class, 'note_id', 'id'); } }