relationship update

This commit is contained in:
2022-08-08 15:01:38 -04:00
parent e618bd4b56
commit 5a330c6cda
7 changed files with 12 additions and 12 deletions

View File

@ -20,6 +20,6 @@ class PaymentMethods extends Model
public function checkout()
{
return $this->belongsTo('App\Models\Checkout', 'payment_method', 'pm_id');
return $this->belongsTo(Checkout::class, 'payment_method', 'pm_id');
}
}