model Product:
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class Product extends Model
{
use SoftDeletes;
protected $fillable = ['name', 'model', 'category_id', 'location_id', 'bank_details'];
public function category()
{
return $this->belongsTo('App\Category', 'category_id', 'id');
}
}