public function orders()

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


    public function orders(): HasMany
    {
        return $this->hasMany(Orders::class, 'customer_id', 'id');
    }