<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class DealerDeliveryProduct extends Model
{
public function product()
return $this->belongsTo(DealerProduct::class, 'product_id');
}