मैं वाक्पटु मॉडल के साथ जाऊंगा
class Category extends Model
{
protected $table = 'tbl_form'; // 'posts'
public function posts()
{
return $this->hasMany(Post::class, 'category', 'category')->select(['title']);
}
}
class Post extends Model
{
protected $table = 'tbl_form'; // 'posts'
public function category()
{
return $this->belongsTo(Category::class, 'category', 'category');
}
}
और इसे इस तरह पुनः प्राप्त करें:
$categories = Category::all();
dd($categories[0]->posts);