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 CustomerFavs extends Model
{
protected $fillable = ['user_id', 'cust_id'];
public function Customers()
return $this->belongsTo('App\Customers', 'cust_id', 'cust_id');
}