View file File name : SellReturnLine.php Content :<?php namespace App; use Illuminate\Database\Eloquent\Model; class SellReturnLine extends Model { protected $fillable = ['sell_line_id', 'transaction_id', 'returned_quantity']; protected $table = 'sell_return_lines'; public function transaction() { return $this->belongsTo(\App\Transaction::class); } public function sell_line() { return $this->belongsTo(\App\TransactionSellLine::class); } }