https://github.com/Saad5400/summer-2025/tree/022b29fd480eaecc682c8dd750423fc8819005b8
فنكشن الدوال في مودل Tweet:
// التغريدة اللي قاعد ارد عليها
public function parentTweet()
{
return $this->belongsTo(Tweet::class, 'parent_tweet_id');
}
// التغريدات اللي ردت عليا مباشرة
public function childTweets()
{
return $this->hasMany(Tweet::class, 'parent_tweet_id');
}
// التغريدة الاساسية اللي بدات كل شي
public function baseTweet()
{
return $this->belongsTo(Tweet::class, 'base_tweet_id');
}
// كل الردود تحت تغريدتي حتى اللي مو رد مباشر
public function descendantTweets()
{
return $this->hasMany(Tweet::class, 'base_tweet_id');
}
ملاحظة بعد ما تشوف الفيديو: غالبا تكرار الايدي يعتبر شي سيء لكن حطيته بغرض نتعلم ع بعض خصائص لارافل