Answers for "laravel has many with ids"

PHP
1

laravel has many

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

laravel has many

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Post extends Model
{
    /**
     * Get the comments for the blog post.
     */
    public function comments()
    {
        return $this->hasMany('App\Models\Comment');
    }
}
Posted by: Guest on October-27-2020
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

Code answers related to "laravel has many with ids"

Browse Popular Code Answers by Language