tempestphp / tempest-framework

The PHP framework that gets out of your way 🌊
https://tempestphp.com
MIT License
813 stars 55 forks source link

Loading an empty relation #495

Open brendt opened 6 days ago

brendt commented 6 days ago

Tempest Version

1.0-alpha1

PHP Version

8.3

Operating System

MacOS

Description

Loading a relation without any entries will result in null for the parent model

Steps to Reproduce

A:hasMany(B)

A::query->with('B') // without any entires

A will be null (because of inner join)

brendt commented 2 days ago

Fixed with #493