Привет, я пытаюсь получить массив, содержащий все категории с количеством сообщений в каждой категории: Пример:
[
{id: 1, name: "category1", posts: 15 },
{id: 2, name: "category2", posts: 33 },
{id: 3, name: "category3", posts: 27 }
]
Подробности:
public function up()
{
Schema::create('posts', function (Blueprint $table) {
$table->bigIncrements('id');
$table->bigInteger('user_id')->unsigned();
$table->foreign('user_id')->references('id')->on('users');
$table->string('slug')->unique();
$table->string('title');
$table->string('image');
$table->text('description');
$table->integer('category_id')->unsigned();;
$table->longText('content');
$table->boolean('published')->default(0);
$table->timestamps();
});
}
public function up()
{
Schema::create('categories', function (Blueprint $table) {
$table->increments('id');
$table->string('name')->unique();
$table->timestamps();
});
}
public function category()
{
return $this->belongsTo('App\Models\Category');
}
public function posts()
{
return $this->hasMany('App\Models\Post');
}
public function index()
{
$Categories = Category::with('posts')->get();
return response()->json($Categories);
}
но эта функция возвращает сообщения со всеми полями, есть способ подсчитать их и добавить число в качестве параметра в массиве?