Jag skulle välja talande modeller
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');
}
}
Och hämta det så här:
$categories = Category::all();
dd($categories[0]->posts);