باتباع مستندات Laravel (إرفاق Laravel pivot بالجدول بقيم متعددة) لا يمكنني رؤية القيم المرفقة دون استدعاء () fresh في النموذج. هل هناك طريقة أفضل لإرفاق هذه النماذج؟
لا أرغب في استخدام () fresh للنموذج بأكمله لأنه تم تحميل العلاقات الأخرى بالفعل. سيؤدي القيام بذلك إلى إعادة الاستعلام وانا لا اريد ذلك
Attaching
$productsToSync = $productsCollection->mapWithKeys(fn ($subscriptionProduct) => [
$subscriptionProduct->id => [
'quantity' => $subscriptionProduct->quantity,
'amount' => $subscriptionProduct->amount,
'item_id' => $subscriptionProduct->item_id,
]
])->toArray();
$subscription->products()->attach($productsToSync);
// This exception passes and is NOT thrown --> SubscriptionProducts are in the DB
throw_unless(
SubscriptionProducts::whereSubscriptionId($subscription->id)->count() > 0,
new \Exception("No SubscriptionProducts in DB?!)
);
// required NOT to throw ... but it refreshes and subsequently requires re-querying
// any already loaded relationships
// $subscription = $subscription->fresh();
throw_if(
$subscription->products->isEmpty(),
new \Exception("Products not attached to subscription WTF!?!")
);
Subscription Class
class Subscription extends Model {
public function products(): BelongsToMany
{
return $this->belongsToMany(Products::class, 'subscription_products', 'subscription_id', 'product_id')
->using(SubscriptionProducts::class)
->as('subscriptionProducts')
->withPivot('id', 'item_id', 'quantity', 'amount');
}
}
السؤال
محمد لارافيل
باتباع مستندات Laravel (إرفاق Laravel pivot بالجدول بقيم متعددة) لا يمكنني رؤية القيم المرفقة دون استدعاء () fresh في النموذج. هل هناك طريقة أفضل لإرفاق هذه النماذج؟
لا أرغب في استخدام () fresh للنموذج بأكمله لأنه تم تحميل العلاقات الأخرى بالفعل. سيؤدي القيام بذلك إلى إعادة الاستعلام وانا لا اريد ذلك
Attaching
$productsToSync = $productsCollection->mapWithKeys(fn ($subscriptionProduct) => [ $subscriptionProduct->id => [ 'quantity' => $subscriptionProduct->quantity, 'amount' => $subscriptionProduct->amount, 'item_id' => $subscriptionProduct->item_id, ] ])->toArray(); $subscription->products()->attach($productsToSync); // This exception passes and is NOT thrown --> SubscriptionProducts are in the DB throw_unless( SubscriptionProducts::whereSubscriptionId($subscription->id)->count() > 0, new \Exception("No SubscriptionProducts in DB?!) ); // required NOT to throw ... but it refreshes and subsequently requires re-querying // any already loaded relationships // $subscription = $subscription->fresh(); throw_if( $subscription->products->isEmpty(), new \Exception("Products not attached to subscription WTF!?!") );
Subscription Class
class Subscription extends Model { public function products(): BelongsToMany { return $this->belongsToMany(Products::class, 'subscription_products', 'subscription_id', 'product_id') ->using(SubscriptionProducts::class) ->as('subscriptionProducts') ->withPivot('id', 'item_id', 'quantity', 'amount'); } }
أرجو منكم المساعدة
0 أجوبة على هذا السؤال
Recommended Posts
انضم إلى النقاش
يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.