dbfdg hasOne('App\Models\ProductServiceCategory', 'id', 'category_id'); } public function customer() { return $this->hasOne('App\Models\Customer', 'id', 'customer_id'); } public function bankAccount() { return $this->hasOne('App\Models\BankAccount', 'id', 'account_id'); } }