Answers for "count hasmany laravel"

PHP
1

laravel has many

public function comments()
 {
   return $this->hasMany(Comment::class);
 }
Posted by: Guest on June-03-2021
0

laravel has many with ids

class Post extends Model
{
  public function comments()
  {
  	return $this->hasMany(Comment::class, 'foreign_key', 'local_key');
 // local id is the main id Of post table such as : id
 // foreign id is the post table which is inside comment table such as: post_id
    //return $this->hasMany(Comment::class, 'post_id', 'id');  
    //return $this->hasMany(Comment::class, 'post_id'); 


  }
}
Posted by: Guest on August-28-2021

Browse Popular Code Answers by Language