public function products()

in app/Models/OrderLines.php [10:13]


    public function products(): HasOne
    {
        return $this->hasOne(Products::class, 'id', 'product_id');
    }